Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142763
b: refs/heads/master
c: 3a38148
h: refs/heads/master
i:
  142761: f7edbb7
  142759: b9246b3
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 24, 2009
1 parent a58b215 commit fb0e19a
Show file tree
Hide file tree
Showing 2 changed files with 7 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: f48fe81e5b032914183e9a17052313720c2cac56
refs/heads/master: 3a38148f0488069cadb75c4a6909954072d648bf
7 changes: 6 additions & 1 deletion trunk/include/linux/interrupt.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ struct irqaction {

extern irqreturn_t no_action(int cpl, void *dev_id);

#ifdef CONFIG_GENERIC_HARDIRQS
extern int __must_check
request_threaded_irq(unsigned int irq, irq_handler_t handler,
irq_handler_t thread_fn,
Expand All @@ -115,9 +116,13 @@ request_irq(unsigned int irq, irq_handler_t handler, unsigned long flags,
return request_threaded_irq(irq, handler, NULL, flags, name, dev);
}

#ifdef CONFIG_GENERIC_HARDIRQS
extern void exit_irq_thread(void);
#else

extern int __must_check
request_irq(unsigned int irq, irq_handler_t handler, unsigned long flags,
const char *name, void *dev);

static inline void exit_irq_thread(void) { }
#endif

Expand Down

0 comments on commit fb0e19a

Please sign in to comment.