From: srplinux2008 Date: Sat, 12 May 2018 17:47:08 +0000 (+0530) Subject: thermal: tegra: soctherm: add const to struct thermal_cooling_device_ops X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cc50ba5e67da6dc7d554271470a566cc111e0456;p=linux.git thermal: tegra: soctherm: add const to struct thermal_cooling_device_ops Correct the typecast with const to struct thermal_cooling_device_ops. It is the last argument to the function thermal_of_cooling_device_register and this argument is of type const. So, declare this structure thermal_cooling_device_ops as constant. Signed-off-by: sumeet p Acked-by: Thierry Reding Signed-off-by: Eduardo Valentin --- diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c index 1f87bbe7618b9..207a798386439 100644 --- a/drivers/thermal/tegra/soctherm.c +++ b/drivers/thermal/tegra/soctherm.c @@ -901,7 +901,7 @@ static int throt_set_cdev_state(struct thermal_cooling_device *cdev, return 0; } -static struct thermal_cooling_device_ops throt_cooling_ops = { +static const struct thermal_cooling_device_ops throt_cooling_ops = { .get_max_state = throt_get_cdev_max_state, .get_cur_state = throt_get_cdev_cur_state, .set_cur_state = throt_set_cdev_state,