From: Julia Lawall Date: Tue, 30 Oct 2018 15:14:59 +0000 (+0100) Subject: thermal: armada: constify thermal_zone_of_device_ops structure X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=13cfb713c8c2035c058af3233c3432165c97ceeb;p=linux.git thermal: armada: constify thermal_zone_of_device_ops structure The thermal_zone_of_device_ops structure can be const as it is only passed as the last argument of devm_thermal_zone_of_sensor_register and the corresponding parameter is declared as const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall Reviewed-by: Daniel Lezcano Signed-off-by: Eduardo Valentin --- diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c index a6d3ee6077f8b..d7105d01859ab 100644 --- a/drivers/thermal/armada_thermal.c +++ b/drivers/thermal/armada_thermal.c @@ -395,7 +395,7 @@ unlock_mutex: return ret; } -static struct thermal_zone_of_device_ops of_ops = { +static const struct thermal_zone_of_device_ops of_ops = { .get_temp = armada_get_temp, };