Changeset 314 for GPL/branches/uniaud-2.0
- Timestamp:
- Mar 24, 2008, 9:35:14 AM (17 years ago)
- Location:
- GPL/branches/uniaud-2.0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud-2.0/alsa-kernel/include/sound/config.h
r311 r314 485 485 typedef irqreturn_t (*snd_irq_handler_t)(int, void *); 486 486 #define irq_handler_t snd_irq_handler_t 487 #undef irq_handler_t 488 #define irq_handler_t snd_irq_handler_t 489 int request_irq(unsigned int, irq_handler_t handler, 490 unsigned long, const char *, void *); 487 491 488 492 #ifndef MODULE_ALIAS -
GPL/branches/uniaud-2.0/include/linux/sched.h
r211 r314 47 47 48 48 // 12 Jun 07 SHL Drop superfluous near 49 #if 0 49 50 extern int request_irq(unsigned int, 50 51 int (*handler)(int, void *, struct pt_regs *), 51 52 unsigned long, const char *, void *); 53 #endif 52 54 extern void free_irq(unsigned int, void *); 53 55 extern void eoi_irq(unsigned int); -
GPL/branches/uniaud-2.0/lib32/irq.c
r84 r314 66 66 //****************************************************************************** 67 67 68 int request_irq(unsigned int irq, 69 int (near *handler)(int, void *, struct pt_regs *), 70 unsigned long x0, const char *x1, void *x2) 68 int request_irq(unsigned irq, irq_handler_t handler, 69 unsigned long x0, const char *x1, void *x2) 71 70 { 72 71 IRQ_SLOT *pSlot = FindSlot(irq);
Note:
See TracChangeset
for help on using the changeset viewer.