diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-16 01:32:53 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-16 01:32:53 (GMT) |
commit | 04bfd1dfb2c0ef236553d205bd95be02792c3396 (patch) | |
tree | fc8a841d0aa71372844048fb40fb57ff484d46f2 /drivers/mfd | |
parent | b902dd4ecc2cccdd6c033ba5d959d4d6606e55fb (diff) | |
download | linux-04bfd1dfb2c0ef236553d205bd95be02792c3396.tar.xz |
drivers: mfd: fix dependencies for MFD_RTSX_PCI
We need to include MFD_CORE if this option is enabled, otherwise we get
build errors.
Cc: Wei WANG <wei_wang@realsil.com.cn>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Borislav Petkov <bp@alien8.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 867af07..2c10938 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -66,6 +66,7 @@ config MFD_SM501_GPIO config MFD_RTSX_PCI tristate "Support for Realtek PCI-E card reader" depends on PCI + select MFD_CORE help This supports for Realtek PCI-Express card reader including rts5209, rts5229, rtl8411, etc. Realtek card reader supports access to many |