• A
    thermal: Constify 'type' argument for the registration routine · 4b1bf587
    Anton Vorontsov 提交于
    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: NAnton Vorontsov <anton.vorontsov@linaro.org>
    Acked-by: NJean Delvare <khali@linux-fr.org>
    4b1bf587
thermal_sys.c 36.2 KB