thermal: Constify 'type' argument for the registration routine
authorAnton Vorontsov <anton.vorontsov@linaro.org>
Tue, 31 Jul 2012 11:39:30 +0000 (04:39 -0700)
committerAnton Vorontsov <anton.vorontsov@linaro.org>
Tue, 31 Jul 2012 12:45:37 +0000 (05:45 -0700)
commit4b1bf5871f7d59de6484cc887e205d6d2f1e6fbd
tree892158a070e8897ef6a6101e740074ae6d5ad9eb
parente6db06a53b1dcf4e9da4aba143e2eb4d63418abb
thermal: Constify 'type' argument for the registration routine

thermal_zone_device_register() does not modify 'type' argument, so it is
safe to declare it as const. Otherwise, if we pass a const string, we are
getting the ugly warning:

CC drivers/power/power_supply_core.o
drivers/power/power_supply_core.c: In function 'psy_register_thermal':
drivers/power/power_supply_core.c:204:6: warning: passing argument 1 of 'thermal_zone_device_register' discards 'const' qualifier from pointer target type [enabled by default]
include/linux/thermal.h:140:29: note: expected 'char *' but argument is of type 'const char *'

Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Acked-by: Jean Delvare <khali@linux-fr.org>
drivers/thermal/thermal_sys.c
include/linux/thermal.h