repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git]
/
scripts
/
kconfig
/
tests
/
inter_choice
/
Kconfig
blob
5698a4018dd0ec2291915861135d88b84f5a57f5
1
# SPDX-License-Identifier: GPL-2.0
2
3
config MODULES
4
def_bool y
5
option modules
6
7
choice
8
prompt "Choice"
9
10
config CHOICE_VAL0
11
tristate "Choice 0"
12
13
config CHOIVE_VAL1
14
tristate "Choice 1"
15
16
endchoice
17
18
choice
19
prompt "Another choice"
20
depends on CHOICE_VAL0
21
22
config DUMMY
23
bool "dummy"
24
25
endchoice