mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
drivers/iio/temperature/Kconfig has a dedicated MLX90635 option, but
the Makefile currently builds mlx90635.o under CONFIG_MLX90632.
This means enabling CONFIG_MLX90635 alone does not carry its provider
object into the build, while enabling CONFIG_MLX90632 unexpectedly also
builds mlx90635.o.
Gate mlx90635.o on the matching generated Kconfig symbol.
Fixes: a1d1ba5e1c ("iio: temperature: mlx90635 MLX90635 IR Temperature sensor")
Cc: stable@vger.kernel.org
Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Acked-by: Crt Mori <cmo@melexis.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
22 lines
711 B
Makefile
22 lines
711 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for industrial I/O temperature drivers
|
|
#
|
|
|
|
obj-$(CONFIG_IQS620AT_TEMP) += iqs620at-temp.o
|
|
obj-$(CONFIG_LTC2983) += ltc2983.o
|
|
obj-$(CONFIG_HID_SENSOR_TEMP) += hid-sensor-temperature.o
|
|
obj-$(CONFIG_MAXIM_THERMOCOUPLE) += maxim_thermocouple.o
|
|
obj-$(CONFIG_MAX30208) += max30208.o
|
|
obj-$(CONFIG_MAX31856) += max31856.o
|
|
obj-$(CONFIG_MAX31865) += max31865.o
|
|
obj-$(CONFIG_MCP9600) += mcp9600.o
|
|
obj-$(CONFIG_MLX90614) += mlx90614.o
|
|
obj-$(CONFIG_MLX90632) += mlx90632.o
|
|
obj-$(CONFIG_MLX90635) += mlx90635.o
|
|
obj-$(CONFIG_TMP006) += tmp006.o
|
|
obj-$(CONFIG_TMP007) += tmp007.o
|
|
obj-$(CONFIG_TMP117) += tmp117.o
|
|
obj-$(CONFIG_TSYS01) += tsys01.o
|
|
obj-$(CONFIG_TSYS02D) += tsys02d.o
|