summaryrefslogtreecommitdiff
path: root/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/tests/choice_value_with_m_dep/Kconfig')
-rw-r--r--scripts/kconfig/tests/choice_value_with_m_dep/Kconfig21
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig b/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig
deleted file mode 100644
index bd970cec07d6..000000000000
--- a/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig
+++ /dev/null
@@ -1,21 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-
-config MODULES
- def_bool y
- modules
-
-config DEP
- tristate
- default m
-
-choice
- prompt "Tristate Choice"
-
-config CHOICE0
- tristate "Choice 0"
-
-config CHOICE1
- tristate "Choice 1"
- depends on DEP
-
-endchoice