mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 06:09:56 +00:00

Implement SPI driver for the Bosch BMI270 6-axis IMU. Provide raw read write access to acceleration and angle velocity measurements via the SPI interface on the device. Signed-off-by: Alex Lanzano <lanzano.alex@gmail.com> Link: https://patch.msgid.link/20241002033628.681812-1-lanzano.alex@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
8 lines
191 B
Makefile
8 lines
191 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for Bosch BMI270 IMU
|
|
#
|
|
obj-$(CONFIG_BMI270) += bmi270_core.o
|
|
obj-$(CONFIG_BMI270_I2C) += bmi270_i2c.o
|
|
obj-$(CONFIG_BMI270_SPI) += bmi270_spi.o
|