Moved LIS3DSH from the I2C-dependent block to the SPI-block to make Make.defs consistent with the driver (SPI only) and drivers/sensors/Kconfig.

This commit is contained in:
Floxx 2017-05-10 19:56:02 +02:00
parent 4f18b40429
commit c2096f17d6

View File

@ -57,10 +57,6 @@ ifeq ($(CONFIG_LIS2DH),y)
CSRCS += lis2dh.c
endif
ifeq ($(CONFIG_LIS3DSH),y)
CSRCS += lis3dsh.c
endif
ifeq ($(CONFIG_LIS331DL),y)
CSRCS += lis331dl.c
endif
@ -126,6 +122,10 @@ ifeq ($(CONFIG_ADXL345_SPI),y)
CSRCS += adxl345_spi.c
endif
ifeq ($(CONFIG_LIS3DSH),y)
CSRCS += lis3dsh.c
endif
ifeq ($(CONFIG_MAX31855),y)
CSRCS += max31855.c
endif