mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 18:41:48 +00:00
c7eeea93ac
3-axis accelerometer sensor (2/4/8 g) with 12-bit resolution and I2C interface many extra features are unsupported (freefall detection, orientation change, autosleep) datasheet is here: http://cache.freescale.com/files/sensors/doc/data_sheet/MMA8452Q.pdf v2: (thanks to Jonathan Cameron) * use ARRAY_SIZE() Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
17 lines
517 B
Makefile
17 lines
517 B
Makefile
#
|
|
# Makefile for industrial I/O accelerometer drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_BMA180) += bma180.o
|
|
obj-$(CONFIG_HID_SENSOR_ACCEL_3D) += hid-sensor-accel-3d.o
|
|
obj-$(CONFIG_KXSD9) += kxsd9.o
|
|
obj-$(CONFIG_MMA8452) += mma8452.o
|
|
|
|
obj-$(CONFIG_IIO_ST_ACCEL_3AXIS) += st_accel.o
|
|
st_accel-y := st_accel_core.o
|
|
st_accel-$(CONFIG_IIO_BUFFER) += st_accel_buffer.o
|
|
|
|
obj-$(CONFIG_IIO_ST_ACCEL_I2C_3AXIS) += st_accel_i2c.o
|
|
obj-$(CONFIG_IIO_ST_ACCEL_SPI_3AXIS) += st_accel_spi.o
|