diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2013-02-06 17:24:03 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-08 12:24:57 -0800 |
commit | f2eca58f2ad92ed20cc96b765a18525d5ace2d19 (patch) | |
tree | d9008784180efaa71f67aed41f0158f5ca0edb39 /drivers/tty/serial | |
parent | 44a754117a53cf965d9e17767463a52c9d9ccbb3 (diff) | |
download | linux-3.10-f2eca58f2ad92ed20cc96b765a18525d5ace2d19.tar.gz linux-3.10-f2eca58f2ad92ed20cc96b765a18525d5ace2d19.tar.bz2 linux-3.10-f2eca58f2ad92ed20cc96b765a18525d5ace2d19.zip |
drivers/serial: add GENERIC_HARDIRQS dependency
Since SERIAL_CORE needs GENERIC_HARDIRQS (see below) and most serial drivers
select it, just add a GENERIC_HARDIRQS dependency to all serial drivers.
Fixes the compile error below:
drivers/tty/serial/serial_core.c: In function ‘uart_set_info’:
drivers/tty/serial/serial_core.c:725:2: error: implicit declaration of function ‘irq_canonicalize’
Cc: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r-- | drivers/tty/serial/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index e9aeccdfbe3..a0162cbf055 100644 --- a/drivers/tty/serial/Kconfig +++ b/drivers/tty/serial/Kconfig @@ -5,7 +5,7 @@ if TTY menu "Serial drivers" - depends on HAS_IOMEM + depends on HAS_IOMEM && GENERIC_HARDIRQS source "drivers/tty/serial/8250/Kconfig" |