From: Charles Keepax Date: Fri, 29 Mar 2013 09:45:34 +0000 (+0000) Subject: ASoC: wm0010: Constify usage of firmware filenames X-Git-Tag: v3.10-rc1~107^2~42^2~4^2~1 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=961b0fc840bf70511ef87d2f799eab014b4d2d37;p=~andy%2Flinux ASoC: wm0010: Constify usage of firmware filenames Signed-off-by: Charles Keepax Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm0010.c b/sound/soc/codecs/wm0010.c index ad2fee4bb4c..55fdf0f4406 100644 --- a/sound/soc/codecs/wm0010.c +++ b/sound/soc/codecs/wm0010.c @@ -342,7 +342,7 @@ static void byte_swap_64(u64 *data_in, u64 *data_out, u32 len) data_out[i] = cpu_to_be64(le64_to_cpu(data_in[i])); } -static int wm0010_firmware_load(char *name, struct snd_soc_codec *codec) +static int wm0010_firmware_load(const char *name, struct snd_soc_codec *codec) { struct spi_device *spi = to_spi_device(codec->dev); struct wm0010_priv *wm0010 = snd_soc_codec_get_drvdata(codec);