huangcm
2025-07-03 c26084b3642f262f858535ab4e46c1e9b520d3a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
menuconfig SUNXI_PHY_KEY
   bool "Sunxi phy-key divice support"
 
if SUNXI_PHY_KEY
 
choice
   prompt "choice sunxi phy-key"
   default SUNXI_GPADC_KEY
   default SUNXI_LRADC_KEY
 
config SUNXI_GPADC_KEY
   bool "Support sunxi gpkey devices"
   help
     Enable support for sunxi gpkey devices.
 
config SUNXI_LRADC_KEY
   bool "Support sunxi lrkey devices"
   help
     Enable support for sunxi lrkey devices.
endchoice
 
endif