blob: 9bf96e92a3220088cd31f0adfbcfb41539832b1b (
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
42
43
44
45
46
47
48
49
50
|
#
# WMT Sensor configuration
#
menuconfig INPUT_SENSOR
bool "WMT Sensor"
help
Say Y here, and a list of supported sensor will be displayed.
This option doesn't affect the kernel.
If unsure, say Y.
if INPUT_SENSOR
config WMT_SENSOR_KXTI9
tristate "KXTI9 G-Sensor Support"
depends on ARCH_WMT
help
Say Y here if you have an WMT based board with g-sensor
attached to it.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called sensor_kxti9.
config WMT_SENSOR_DMT08
tristate "DMT08 G-Sensor Support"
depends on ARCH_WMT
help
Say Y here if you have an WMT based board with g-sensor
attached to it.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called sensor_dmt08.
config WMT_SENSOR_DMT10
tristate "DMT10 G-Sensor Support"
depends on ARCH_WMT
help
Say Y here if you have an WMT based board with g-sensor
attached to it.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called sensor_dmt10.
endif
|