diff --git a/drivers/sensors/Kconfig b/drivers/sensors/Kconfig index a9d0d3c364c..80cdfcec0c5 100644 --- a/drivers/sensors/Kconfig +++ b/drivers/sensors/Kconfig @@ -99,6 +99,13 @@ config MAX31855 ---help--- Enables support for the MAX31855 driver +config MAX6675 + bool "Maxim MAX6675 Driver" + default n + select SPI + ---help--- + Enables support for the MAX6675 driver + config I2C_LM75 bool default y if LM75 diff --git a/drivers/sensors/Make.defs b/drivers/sensors/Make.defs index 89a10808e9b..a1c5c69a546 100644 --- a/drivers/sensors/Make.defs +++ b/drivers/sensors/Make.defs @@ -90,6 +90,10 @@ ifeq ($(CONFIG_MAX31855),y) CSRCS += max31855.c endif +ifeq ($(CONFIG_MAX6675),y) + CSRCS += max6675.c +endif + ifeq ($(CONFIG_MPL115A),y) CSRCS += mpl115a.c endif