]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
keyboard: Do not include <linux/irq.>
authorGeert Uytterhoeven <geert@linux-m68k.org>
Sun, 11 Sep 2011 11:59:29 +0000 (13:59 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 22 Sep 2011 23:05:08 +0000 (16:05 -0700)
commit98c2b37353cd8839f86f36e9bb9fe39f33fc9626
tree70b6f7c513e4239e10d2e903b1007a679bb53a48
parent3a0db7215c88077b61a673215756ec4a0dc0c7a5
keyboard: Do not include <linux/irq.>

The top of <linux/irq.h> has this comment:

 * Please do not include this file in generic code.  There is currently
 * no requirement for any architecture to implement anything held
 * within this file.
 *
 * Thanks. --rmk

Remove inclusion of <linux/irq.>, to prevent the following compile error
from happening soon:

| include/linux/irq.h:132: error: redefinition of ‘struct irq_data’
| include/linux/irq.h:286: error: redefinition of ‘struct irq_chip’

drivers/tty/vt/keyboard.c needs to include <asm/irq_regs.h> for get_irq_regs():

| drivers/tty/vt/keyboard.c:497: error: implicit declaration of function ‘get_irq_regs’
| drivers/tty/vt/keyboard.c:497: warning: initialization makes pointer from integer without a cast

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/tty/vt/keyboard.c