mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
bd7fe5b719
This change implements BMC150 accelerometer driver. A BMC150 package consist of a compass and an accelerometer. This driver only implements accelerometer part. Spec downloaded from: http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-03.pdf This sensor chip supports many advanced features, but this driver implements minimum feature set which is a must to be useful. This driver can be enhanced incrementally. If the sensor vendor wants to update full featured version, they can substitute or enhance this driver when they get chance. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
19 lines
602 B
Makefile
19 lines
602 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_BMC150_ACCEL) += bmc150-accel.o
|
|
obj-$(CONFIG_HID_SENSOR_ACCEL_3D) += hid-sensor-accel-3d.o
|
|
obj-$(CONFIG_KXCJK1013) += kxcjk-1013.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
|