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
/
choice_value_with_m_dep
/
Kconfig
blob
7106c26bb3a83ddc2dc67e5a88065972a75f65eb
1
# SPDX-License-Identifier: GPL-2.0
2
3
config MODULES
4
def_bool y
5
option modules
6
7
config DEP
8
tristate
9
default m
10
11
choice
12
prompt "Tristate Choice"
13
14
config CHOICE0
15
tristate "Choice 0"
16
17
config CHOICE1
18
tristate "Choice 1"
19
depends on DEP
20
21
endchoice