drm/panfrost: Remove set but not used variable 'bo'
[linux/fpc-iii.git] / scripts / kconfig / tests / new_choice_with_dep / Kconfig
blob127731c046b5b3f75575fec76425821a6654eee3
1 # SPDX-License-Identifier: GPL-2.0
3 config A
4         bool "A"
5         help
6           This is a new symbol.
8 choice
9         prompt "Choice ?"
10         depends on A
11         help
12           "depends on A" has been newly added.
14 config CHOICE_B
15         bool "Choice B"
17 config CHOICE_C
18         bool "Choice C"
19         help
20           This is a new symbol, so should be asked.
22 endchoice
24 choice
25         prompt "Choice2 ?"
27 config CHOICE_D
28         bool "Choice D"
30 config CHOICE_E
31         bool "Choice E"
33 config CHOICE_F
34         bool "Choice F"
35         depends on A
36         help
37           This is a new symbol, so should be asked.
39 endchoice