1# SPDX-License-Identifier: GPL-2.0-or-later 2 3config INV_ICM42600 4 tristate 5 select IIO_BUFFER 6 7config INV_ICM42600_I2C 8 tristate "InvenSense ICM-426xx I2C driver" 9 depends on I2C 10 select INV_ICM42600 11 select REGMAP_I2C 12 help 13 This driver supports the InvenSense ICM-426xx motion tracking 14 devices over I2C. 15 16 This driver can be built as a module. The module will be called 17 inv-icm42600-i2c. 18 19config INV_ICM42600_SPI 20 tristate "InvenSense ICM-426xx SPI driver" 21 depends on SPI_MASTER 22 select INV_ICM42600 23 select REGMAP_SPI 24 help 25 This driver supports the InvenSense ICM-426xx motion tracking 26 devices over SPI. 27 28 This driver can be built as a module. The module will be called 29 inv-icm42600-spi. 30