blob: 38b86da3aa07e98dd95de1a85a9c439a02038c74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
config DRIVERS_LENOVO_WACOM
bool
default n
if DRIVERS_LENOVO_WACOM
choice
prompt "Digitizer"
default DIGITIZER_AUTODETECT
config DIGITIZER_AUTODETECT
bool "Autodetect"
help
The presence of digitizer is inferred from model number stored in
AT24RF chip.
config DIGITIZER_PRESENT
bool "Present"
help
The digitizer is assumed to be present.
config DIGITIZER_ABSENT
bool "Absent"
help
The digitizer is assumed to be absent.
endchoice
endif
config DRIVERS_LENOVO_HYBRID_GRAPHICS
bool
default n
config HYBRID_GRAPHICS_GPIO_NUM
depends on DRIVERS_LENOVO_HYBRID_GRAPHICS
int
default 52
help
Set a default GPIO that sets the panel LVDS signal routing to
integrated or discrete GPU.
|