diff options
author | Darren Hart <dvhart@infradead.org> | 2018-05-12 21:10:07 +0200 |
---|---|---|
committer | Darren Hart (VMware) <dvhart@infradead.org> | 2018-05-13 00:38:40 +0200 |
commit | 74783c99bf564cf598ec371a1dd790a5bf5afb64 (patch) | |
tree | 1e9508dafcf9ff164fa269580e7e2a0751919eb6 /drivers/platform | |
parent | platform/mellanox: mlxreg-hotplug: Document fixes for hotplug private data (diff) | |
download | linux-74783c99bf564cf598ec371a1dd790a5bf5afb64.tar.xz linux-74783c99bf564cf598ec371a1dd790a5bf5afb64.zip |
platform/x86: DELL_WMI use depends on instead of select for DELL_SMBIOS
If DELL_WMI "select"s DELL_SMBIOS, the DELL_SMBIOS dependencies are
ignored and it is still possible to end up with unmet direct
dependencies.
Change the select to a depends on.
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig index bc309c5327ff..566644bb496a 100644 --- a/drivers/platform/x86/Kconfig +++ b/drivers/platform/x86/Kconfig @@ -168,8 +168,8 @@ config DELL_WMI depends on DMI depends on INPUT depends on ACPI_VIDEO || ACPI_VIDEO = n + depends on DELL_SMBIOS select DELL_WMI_DESCRIPTOR - select DELL_SMBIOS select INPUT_SPARSEKMAP ---help--- Say Y here if you want to support WMI-based hotkeys on Dell laptops. |