mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
20ffac278e
Minimal implementation for KMX61 6-axis accelerometer/magnetometer. It exports raw accel/magn readings together with scale and sampling frequency. This driver uses two IIO devices one for accelerometer and one for magnetometer. Datasheet will be available at: http://www.kionix.com/6-axis-accelerometer-magnetometer/kmx61 Signed-off-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
19 lines
515 B
Makefile
19 lines
515 B
Makefile
#
|
|
# Makefile for Inertial Measurement Units
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
adis16400-y := adis16400_core.o
|
|
adis16400-$(CONFIG_IIO_BUFFER) += adis16400_buffer.o
|
|
obj-$(CONFIG_ADIS16400) += adis16400.o
|
|
obj-$(CONFIG_ADIS16480) += adis16480.o
|
|
|
|
adis_lib-y += adis.o
|
|
adis_lib-$(CONFIG_IIO_ADIS_LIB_BUFFER) += adis_trigger.o
|
|
adis_lib-$(CONFIG_IIO_ADIS_LIB_BUFFER) += adis_buffer.o
|
|
obj-$(CONFIG_IIO_ADIS_LIB) += adis_lib.o
|
|
|
|
obj-y += inv_mpu6050/
|
|
|
|
obj-$(CONFIG_KMX61) += kmx61.o
|