diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2013-02-06 17:24:01 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-08 21:16:12 +0100 |
commit | 5273afe359f700ac28bf8e9d63d733dbe0483e62 (patch) | |
tree | d1b59c42f558e9a22e6b95461bc5861e530971be /drivers/usb/renesas_usbhs/Kconfig | |
parent | USB: storage: properly handle the endian issues of idProduct (diff) | |
download | linux-5273afe359f700ac28bf8e9d63d733dbe0483e62.tar.xz linux-5273afe359f700ac28bf8e9d63d733dbe0483e62.zip |
drivers/usb: add missing GENERIC_HARDIRQS dependencies
Add a couple of missing GENERIC_HARDIRQS dependencies to fix link
errors like below on s390:
ERROR: "devm_request_threaded_irq" [drivers/usb/gadget/mv_udc.ko] undefined!
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/renesas_usbhs/Kconfig')
-rw-r--r-- | drivers/usb/renesas_usbhs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/Kconfig b/drivers/usb/renesas_usbhs/Kconfig index 6f4afa436381..29feb00d7f39 100644 --- a/drivers/usb/renesas_usbhs/Kconfig +++ b/drivers/usb/renesas_usbhs/Kconfig @@ -4,7 +4,7 @@ config USB_RENESAS_USBHS tristate 'Renesas USBHS controller' - depends on USB && USB_GADGET + depends on USB && USB_GADGET && GENERIC_HARDIRQS default n help Renesas USBHS is a discrete USB host and peripheral controller chip |