From: Krzysztof Kozlowski Date: Fri, 1 May 2015 15:53:31 +0000 (+0900) Subject: iio: adc: axp288: Constify platform_device_id X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e682173f3753a73feb8336c8b6cdd8c6b74bdd75;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git iio: adc: axp288: 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: Jonathan Cameron --- diff --git a/drivers/iio/adc/axp288_adc.c b/drivers/iio/adc/axp288_adc.c index 08bcfb061ca5..27197fd1517e 100644 --- a/drivers/iio/adc/axp288_adc.c +++ b/drivers/iio/adc/axp288_adc.c @@ -238,7 +238,7 @@ static int axp288_adc_remove(struct platform_device *pdev) return 0; } -static struct platform_device_id axp288_adc_id_table[] = { +static const struct platform_device_id axp288_adc_id_table[] = { { .name = "axp288_adc" }, {}, };