diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-03-24 06:47:43 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-03-24 13:08:58 -0400 |
commit | 2f4b1e6bb25899e7d21e1764abcfb23f14250535 (patch) | |
tree | 866366806262c96ddcf92f6470267e2caff70178 | |
parent | f8c3c3094302cb25d9720804b8100fdd37a3ace0 (diff) |
ASoC: rsnd: Fix duplicate const for DVC ramp rates
Replace duplicated const keyword for 'dvc_ramp_rate' with proper
array of const pointers to const strings.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/sh/rcar/dvc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/rcar/dvc.c b/sound/soc/sh/rcar/dvc.c index aeeef1352eee..6d85e36c6c2b 100644 --- a/sound/soc/sh/rcar/dvc.c +++ b/sound/soc/sh/rcar/dvc.c | |||
@@ -36,7 +36,7 @@ struct rsnd_dvc { | |||
36 | ((pos) = (struct rsnd_dvc *)(priv)->dvc + i); \ | 36 | ((pos) = (struct rsnd_dvc *)(priv)->dvc + i); \ |
37 | i++) | 37 | i++) |
38 | 38 | ||
39 | static const char const *dvc_ramp_rate[] = { | 39 | static const char * const dvc_ramp_rate[] = { |
40 | "128 dB/1 step", /* 00000 */ | 40 | "128 dB/1 step", /* 00000 */ |
41 | "64 dB/1 step", /* 00001 */ | 41 | "64 dB/1 step", /* 00001 */ |
42 | "32 dB/1 step", /* 00010 */ | 42 | "32 dB/1 step", /* 00010 */ |