Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 234770
b: refs/heads/master
c: 0c4602f
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed Feb 25, 2011
1 parent 35b180e commit 9cce544
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9d591edd02a245305b1b9379e4c5571bad4d2774
refs/heads/master: 0c4602ff88d6d6ef0ee6d228ee9acaa6448ff6f5
4 changes: 3 additions & 1 deletion trunk/include/linux/interrupt.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
* irq line disabled until the threaded handler has been run.
* IRQF_NO_SUSPEND - Do not disable this IRQ during suspend
* IRQF_FORCE_RESUME - Force enable it on resume even if IRQF_NO_SUSPEND is set
* IRQF_NO_THREAD - Interrupt cannot be threaded
*/
#define IRQF_DISABLED 0x00000020
#define IRQF_SAMPLE_RANDOM 0x00000040
Expand All @@ -70,8 +71,9 @@
#define IRQF_ONESHOT 0x00002000
#define IRQF_NO_SUSPEND 0x00004000
#define IRQF_FORCE_RESUME 0x00008000
#define IRQF_NO_THREAD 0x00010000

#define IRQF_TIMER (__IRQF_TIMER | IRQF_NO_SUSPEND)
#define IRQF_TIMER (__IRQF_TIMER | IRQF_NO_SUSPEND | IRQF_NO_THREAD)

/*
* These values can be returned by request_any_context_irq() and
Expand Down

0 comments on commit 9cce544

Please sign in to comment.