From: Krzysztof Kozlowski Date: Fri, 1 May 2015 15:49:21 +0000 (+0900) Subject: mmc: sdhci-imx: Constify platform_device_id X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f8cbf461f9fa8649ef3aae6068f303024cd4fca8;p=linux-beck.git mmc: sdhci-imx: 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: Ulf Hansson --- diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index ffa976037cf2..8eed84326e2f 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -161,7 +161,7 @@ struct pltfm_imx_data { u32 is_ddr; }; -static struct platform_device_id imx_esdhc_devtype[] = { +static const struct platform_device_id imx_esdhc_devtype[] = { { .name = "sdhci-esdhc-imx25", .driver_data = (kernel_ulong_t) &esdhc_imx25_data,