rockchip: rk3128: use ARM arch timer instead of rk_timer
[oweals/u-boot.git] / scripts / kconfig / tests / choice_value_with_m_dep / Kconfig
1 config MODULES
2         def_bool y
3         option modules
4
5 config DEP
6         tristate
7         default m
8
9 choice
10         prompt "Tristate Choice"
11
12 config CHOICE0
13         tristate "Choice 0"
14
15 config CHOICE1
16         tristate "Choice 1"
17         depends on DEP
18
19 endchoice