Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
# SPDX-License-Identifier: GPL-2.0
#
# Magnetometer drivers configuration
#

menuconfig COMPASS_DEVICE
	tristate "Magnetometer sensors"
	default n
	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 COMPASS_DEVICE

config COMPASS_AK8975
  tristate "Asahi Kasei AK8975 3-Axis Magnetometer"
  depends on I2C
  default n
  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_AK8963
  tristate "Asahi Kasei AK8963 3-Axis Magnetometer"
  depends on I2C
  default n
  help
  Say yes here to build support for Asahi Kasei AK8963 3-Axis Magnetometer.

  To compile this driver as a module, choose M here: the module
  will be called ak8963.


config COMPASS_AK09911
  tristate "Asahi Kasei AK09911 3-Axis Magnetometer"
  depends on I2C
  help
  Say yes here to build support for Asahi Kasei AK09911 3-Axis Magnetometer.

  To compile this driver as a module, choose M here: the module
  will be called AK09911.

config COMPASS_AK09918
  tristate "Asahi Kasei AK09911 3-Axis Magnetometer"
  depends on I2C
  help
  Say yes here to build support for Asahi Kasei AK09918 3-Axis Magnetometer.
  To compile this driver as a module, choose M here: the module
  will be called AK09911.

endif