diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2013-02-06 17:23:56 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-08 12:23:53 -0800 |
commit | e1e0a9e6991ec2c611f13dfc0a6bc1a214a22374 (patch) | |
tree | eb4873cf9c032b1ac32cba4606f7c2e5d6633eb8 /drivers/mmc/host/Kconfig | |
parent | 3d55399391c8ecb5bb3d1c426bafa2580a889c4e (diff) | |
download | op-kernel-dev-e1e0a9e6991ec2c611f13dfc0a6bc1a214a22374.zip op-kernel-dev-e1e0a9e6991ec2c611f13dfc0a6bc1a214a22374.tar.gz |
drivers/misc/cb710: add missing GENERIC_HARDIRQS dependency
CB710_CORE (drivers/misc/cb710/core.c) calls devm_request_irq() and
therefore needs a GENERIC_HARDIRQS dependency to prevent a link
error on s390.
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/mmc/host/Kconfig')
-rw-r--r-- | drivers/mmc/host/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 8d13c65..3004127 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig @@ -461,7 +461,7 @@ config MMC_SDHI config MMC_CB710 tristate "ENE CB710 MMC/SD Interface support" - depends on PCI + depends on PCI && GENERIC_HARDIRQS select CB710_CORE help This option enables support for MMC/SD part of ENE CB710/720 Flash |