From: Krzysztof Kozlowski Date: Fri, 1 May 2015 16:00:13 +0000 (+0900) Subject: ASoC: fsl: Constify platform_device_id X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e51cebf75ab45d9f680a15a120b605244b7ce5ea;p=linux-beck.git ASoC: fsl: 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: Mark Brown --- diff --git a/sound/soc/fsl/imx-audmux.c b/sound/soc/fsl/imx-audmux.c index d9050d946ae7..fc57da341d61 100644 --- a/sound/soc/fsl/imx-audmux.c +++ b/sound/soc/fsl/imx-audmux.c @@ -184,7 +184,7 @@ static enum imx_audmux_type { IMX31_AUDMUX, } audmux_type; -static struct platform_device_id imx_audmux_ids[] = { +static const struct platform_device_id imx_audmux_ids[] = { { .name = "imx21-audmux", .driver_data = IMX21_AUDMUX,