diff options
| author | Kuninori Morimoto <[email protected]> | 2012-07-30 22:39:06 -0700 |
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2012-08-21 16:14:23 +0200 |
| commit | b3ae66f209e8929db62b5a5f874ab2cdcf5ef1d4 (patch) | |
| tree | d7c2a3fcfc9fb7e7a7d01c9463803a4e43abb3ec /kernel | |
| parent | d9875690d9b89a866022ff49e3fcea892345ad92 (diff) | |
genirq: Export irq_set_chip_and_handler_name()
Export irq_set_chip_and_handler_name() to modules to allow them to
do things such as
irq_set_chip_and_handler(....);
This fixes
ERROR: "irq_set_chip_and_handler_name" \
[drivers/gpio/gpio-pcf857x.ko] undefined!
when gpio-pcf857x.c is being built as a module.
Signed-off-by: Kuninori Morimoto <[email protected]>
Cc: Linus Walleij <[email protected]>
Cc: Stephen Rothwell <[email protected]>
Cc: Greg KH <[email protected]>
Link: http://lkml.kernel.org/r/873948trpk.wl%[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/irq/chip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index eebd6d5cfb44..57d86d07221e 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -671,6 +671,7 @@ irq_set_chip_and_handler_name(unsigned int irq, struct irq_chip *chip, irq_set_chip(irq, chip); __irq_set_handler(irq, handle, 0, name); } +EXPORT_SYMBOL_GPL(irq_set_chip_and_handler_name); void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set) { |