OSDN Git Service

thermal: st: fix Makefile typo
authorArnd Bergmann <arnd@arndb.de>
Mon, 10 Dec 2018 21:57:27 +0000 (22:57 +0100)
committerEduardo Valentin <edubezval@gmail.com>
Wed, 2 Jan 2019 12:47:16 +0000 (04:47 -0800)
When STM32_THERMAL is enabled, this overrides all previously
enabled files in the same directory, as seen from this link failure:

ERROR: "st_thermal_pm_ops" [drivers/thermal/st/st_thermal_syscfg.ko] undefined!
ERROR: "st_thermal_register" [drivers/thermal/st/st_thermal_syscfg.ko] undefined!
ERROR: "st_thermal_unregister" [drivers/thermal/st/st_thermal_syscfg.ko] undefined!

The correct syntax in Makefile requires using += instead of :=.

Fixes: 1d6931556073 ("thermal: add stm32 thermal driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
drivers/thermal/st/Makefile

index b2b9e9b..243ca78 100644 (file)
@@ -1,4 +1,4 @@
 obj-$(CONFIG_ST_THERMAL)               := st_thermal.o
 obj-$(CONFIG_ST_THERMAL_SYSCFG)                += st_thermal_syscfg.o
 obj-$(CONFIG_ST_THERMAL_MEMMAP)                += st_thermal_memmap.o
-obj-$(CONFIG_STM32_THERMAL)            := stm_thermal.o
\ No newline at end of file
+obj-$(CONFIG_STM32_THERMAL)            += stm_thermal.o