mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-10 23:18:10 +09:00
Change-Id: I754250669891307b0deab2bdab1bd01512713f79 Signed-off-by: Tao Huang <huangtao@rock-chips.com>
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Magnetometer sensors
|
|
#
|
|
|
|
menuconfig MAG_SENSORS
|
|
bool "Magnetometer sensors"
|
|
help
|
|
Say Y here, and a list of Magnetometer sensors drivers will be displayed.
|
|
Everything that didn't fit into the other categories is here. This option
|
|
doesn't affect the kernel.
|
|
|
|
If unsure, say Y.
|
|
|
|
if MAG_SENSORS
|
|
|
|
config COMPASS_AK8975
|
|
tristate "Asahi Kasei AK8975 3-Axis Magnetometer"
|
|
depends on I2C
|
|
help
|
|
Say yes here to build support for Asahi Kasei AK8975 3-Axis
|
|
Magnetometer.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called ak8975.
|
|
|
|
config COMPASS_AK8973
|
|
tristate "Asahi Kasei AK8973 3-Axis Magnetometer"
|
|
depends on I2C
|
|
help
|
|
Say yes here to build support for Asahi Kasei AK8973 3-Axis
|
|
Magnetometer.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called ak8973.
|
|
|
|
config COMPASS_MMC328X
|
|
tristate "Mmc328x 3-Axis Magnetometer"
|
|
depends on I2C
|
|
help
|
|
Say yes here to build support for mmc3280 3-Axis
|
|
Magnetometer.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called mmc3280.
|
|
|
|
endif
|
|
|