diff options
author | Darren Hart <dvhart@infradead.org> | 2018-05-12 12:10:07 -0700 |
---|---|---|
committer | Darren Hart (VMware) <dvhart@infradead.org> | 2018-05-18 15:49:26 -0700 |
commit | 54940fa60ad3728c592f62dadb558165495a6938 (patch) | |
tree | 1f48e6ffbf96d9c95e6211557c53b52a06a717bf /drivers | |
parent | 7fe3fa3b5ec8e75389cce4bf5d052a52e6198d59 (diff) | |
download | linux-stable-54940fa60ad3728c592f62dadb558165495a6938.tar.gz linux-stable-54940fa60ad3728c592f62dadb558165495a6938.tar.bz2 linux-stable-54940fa60ad3728c592f62dadb558165495a6938.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')
-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. |