xref: /OK3568_Linux_fs/kernel/drivers/input/sensors/compass/Kconfig (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# SPDX-License-Identifier: GPL-2.0
2#
3# Magnetometer drivers configuration
4#
5
6menuconfig COMPASS_DEVICE
7	tristate "Magnetometer sensors"
8	default n
9	help
10	  Say Y here, and a list of Magnetometer sensors drivers will be displayed.
11	  Everything that didn't fit into the other categories is here. This option
12	  doesn't affect the kernel.
13
14	  If unsure, say Y.
15
16if COMPASS_DEVICE
17
18config COMPASS_AK8975
19  tristate "Asahi Kasei AK8975 3-Axis Magnetometer"
20  depends on I2C
21  default n
22  help
23  Say yes here to build support for Asahi Kasei AK8975 3-Axis
24  Magnetometer.
25
26  To compile this driver as a module, choose M here: the module
27  will be called ak8975.
28
29config COMPASS_AK8963
30  tristate "Asahi Kasei AK8963 3-Axis Magnetometer"
31  depends on I2C
32  default n
33  help
34  Say yes here to build support for Asahi Kasei AK8963 3-Axis Magnetometer.
35
36  To compile this driver as a module, choose M here: the module
37  will be called ak8963.
38
39
40config COMPASS_AK09911
41  tristate "Asahi Kasei AK09911 3-Axis Magnetometer"
42  depends on I2C
43  help
44  Say yes here to build support for Asahi Kasei AK09911 3-Axis Magnetometer.
45
46  To compile this driver as a module, choose M here: the module
47  will be called AK09911.
48
49config COMPASS_AK09918
50  tristate "Asahi Kasei AK09911 3-Axis Magnetometer"
51  depends on I2C
52  help
53  Say yes here to build support for Asahi Kasei AK09918 3-Axis Magnetometer.
54  To compile this driver as a module, choose M here: the module
55  will be called AK09911.
56
57endif
58
59