mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 00:51:44 +00:00
fd64df16f4
The only difference between the MPU6000 and the MPU6050 is that the first also supports SPI. Add SPI driver for this chip. Signed-off-by: Adriana Reus <adriana.reus@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
13 lines
357 B
Makefile
13 lines
357 B
Makefile
#
|
|
# Makefile for Invensense MPU6050 device.
|
|
#
|
|
|
|
obj-$(CONFIG_INV_MPU6050_IIO) += inv-mpu6050.o
|
|
inv-mpu6050-objs := inv_mpu_core.o inv_mpu_ring.o inv_mpu_trigger.o
|
|
|
|
obj-$(CONFIG_INV_MPU6050_I2C) += inv-mpu6050-i2c.o
|
|
inv-mpu6050-i2c-objs := inv_mpu_i2c.o inv_mpu_acpi.o
|
|
|
|
obj-$(CONFIG_INV_MPU6050_SPI) += inv-mpu6050-spi.o
|
|
inv-mpu6050-spi-objs := inv_mpu_spi.o
|