thermal: Constify struct thermal_zone_device_ops
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 25 May 2025 09:40:04 +0000 (11:40 +0200)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Tue, 15 Jul 2025 13:26:04 +0000 (15:26 +0200)
commit992e2ed0abf25d9567c61af9f3c552d6d9024e04
tree08f06932e47005d170178ec2ce4e189db82a3e0a
parenteb514766e0e0d2064c8700a79441e43e85008381
thermal: Constify struct thermal_zone_device_ops

'struct thermal_zone_device_ops' are not modified in these drivers.

Constifying these structures moves some data to a read-only section, so
increases overall security, especially when the structure holds some
function pointers.

On a x86_64, with allmodconfig, as an example:
Before:
======
   text    data     bss     dec     hex filename
  28116    5168     128   33412    8284 drivers/thermal/armada_thermal.o

After:
=====
   text    data     bss     dec     hex filename
  28244    5040     128   33412    8284 drivers/thermal/armada_thermal.o

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com> # For Armada
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Link: https://lore.kernel.org/r/5bba3bf0139e2418b306a0f9a2f1f81ef49e88a6.1748165978.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/thermal/armada_thermal.c
drivers/thermal/da9062-thermal.c
drivers/thermal/dove_thermal.c
drivers/thermal/imx_thermal.c
drivers/thermal/intel/int340x_thermal/int3400_thermal.c
drivers/thermal/kirkwood_thermal.c
drivers/thermal/mediatek/lvts_thermal.c
drivers/thermal/renesas/rcar_thermal.c
drivers/thermal/spear_thermal.c
drivers/thermal/st/st_thermal.c
drivers/thermal/testing/zone.c