From: Krzysztof Kozlowski Date: Fri, 1 May 2015 15:46:43 +0000 (+0900) Subject: power: axp288_fuel_gauge: Constify platform_device_id X-Git-Tag: v4.2-rc1~145^2~28 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-linux.git;a=commitdiff_plain;h=f1f27a4acf7c5be41dccf3ce2e509e2e9fcc6e6f power: axp288_fuel_gauge: Constify platform_device_id The platform_device_id is not modified by the driver and core uses it as const. Signed-off-by: Krzysztof Kozlowski Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/axp288_fuel_gauge.c b/drivers/power/axp288_fuel_gauge.c index bd1dbfee2515..50c0110d6b58 100644 --- a/drivers/power/axp288_fuel_gauge.c +++ b/drivers/power/axp288_fuel_gauge.c @@ -1117,7 +1117,7 @@ static int axp288_fuel_gauge_probe(struct platform_device *pdev) return ret; } -static struct platform_device_id axp288_fg_id_table[] = { +static const struct platform_device_id axp288_fg_id_table[] = { { .name = DEV_NAME }, {}, };