aboutsummaryrefslogtreecommitdiff
path: root/kernel/irq/dummychip.c
AgeCommit message (Collapse)AuthorFilesLines
2012-08-21genirq: Export dummy_irq_chipKuninori Morimoto1-0/+2
Export dummy_irq_chip to modules to allow them to do things such as irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_level_irq); This fixes ERROR: "dummy_irq_chip" [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/871ujstrp6.wl%[email protected] Signed-off-by: Thomas Gleixner <[email protected]>
2011-03-29genirq: Remove compat codeThomas Gleixner1-9/+0
Signed-off-by: Thomas Gleixner <[email protected]>
2010-10-12genirq: Fix CONFIG_GENIRQ_NO_DEPRECATED=y buildThomas Gleixner1-1/+1
This option can be set to verify the full conversion to the new chip functions. Fix the fallout of the patch rework, so the core code compiles and works with it. Signed-off-by: Thomas Gleixner <[email protected]>
2010-10-12genirq: Distangle kernel/irq/handle.cThomas Gleixner1-0/+68
kernel/irq/handle.c has become a dumpground for random code in random order. Split out the irq descriptor management and the dummy irq_chip implementation into separate files. Cleanup the include maze while at it. No code change. Signed-off-by: Thomas Gleixner <[email protected]> Reviewed-by: Ingo Molnar <[email protected]>