thermal: netlink: Fix compilation error when CONFIG_NET=n
authorDaniel Lezcano <daniel.lezcano@linaro.org>
Tue, 7 Jul 2020 09:01:57 +0000 (11:01 +0200)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Tue, 21 Jul 2020 08:39:17 +0000 (10:39 +0200)
commit5b8583d3bd7fc10cea07e4a5bfa59465758a39dc
treefa4d8e4f1f2481fa6627b46ce7d731e011470313
parent55cdf0a283b876050f0c502685adc346180d7a2f
thermal: netlink: Fix compilation error when CONFIG_NET=n

When the network is not configured, the netlink is disabled on all
the system. The thermal framework assumed the netlink is always
opt-in.

Fix this by adding a Kconfig option for the netlink notification,
defaulting to yes and depending on CONFIG_NET.

As the change implies multiple stubs and in order to not pollute the
internal thermal header, the thermal_nelink.h has been added and
included in the thermal_core.h, so this one regain some kind of
clarity.

Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
Link: https://lore.kernel.org/r/20200707090159.1018-1-daniel.lezcano@linaro.org
drivers/thermal/Kconfig
drivers/thermal/Makefile
drivers/thermal/thermal_core.h
drivers/thermal/thermal_netlink.h [new file with mode: 0644]