diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-05-01 12:00:13 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-05-01 12:51:43 -0400 |
commit | e51cebf75ab45d9f680a15a120b605244b7ce5ea (patch) | |
tree | 25b01e904d7d815d1bf2d91a05f4af663a2f6cd9 | |
parent | b787f68c36d49bb1d9236f403813641efa74a031 (diff) |
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 <k.kozlowski.k@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/fsl/imx-audmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
184 | IMX31_AUDMUX, | 184 | IMX31_AUDMUX, |
185 | } audmux_type; | 185 | } audmux_type; |
186 | 186 | ||
187 | static struct platform_device_id imx_audmux_ids[] = { | 187 | static const struct platform_device_id imx_audmux_ids[] = { |
188 | { | 188 | { |
189 | .name = "imx21-audmux", | 189 | .name = "imx21-audmux", |
190 | .driver_data = IMX21_AUDMUX, | 190 | .driver_data = IMX21_AUDMUX, |