diff options
author | Joe Perches <[email protected]> | 2019-11-28 09:13:26 -0800 |
---|---|---|
committer | Paul Burton <[email protected]> | 2019-12-02 10:51:01 -0800 |
commit | a7effde99b6e8119b28c235eda5419c2e03b3089 (patch) | |
tree | 5295280c44202bdcad3b7fb4c5109c3e993d6769 | |
parent | 7d2aa4bb90f5f6f1b8de8848c26042403f2d7bf9 (diff) |
MIPS: Kconfig: Use correct form for 'depends on'
Remove the CONFIG_ prefix from "depends on" as it makes the selection
not possible.
Signed-off-by: Joe Perches <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Paul Burton <[email protected]>
Cc: Ralf Baechle <[email protected]>
Cc: James Hogan <[email protected]>
Cc: [email protected]
Cc: LKML <[email protected]>
-rw-r--r-- | drivers/platform/mips/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/mips/Kconfig b/drivers/platform/mips/Kconfig index f4d0a86c00d0..5e77b0dc5fd6 100644 --- a/drivers/platform/mips/Kconfig +++ b/drivers/platform/mips/Kconfig @@ -18,7 +18,7 @@ if MIPS_PLATFORM_DEVICES config CPU_HWMON tristate "Loongson-3 CPU HWMon Driver" - depends on CONFIG_MACH_LOONGSON64 + depends on MACH_LOONGSON64 select HWMON default y help |