aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@nokia.com>2010-01-13 05:37:49 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-01-13 08:22:55 -0500
commitfd63df2264f2518fa67dca596d493a330537494d (patch)
treef97cab8ae45dc3883c644317c4ebd2cdf40b4aad /sound/soc/codecs
parent735fe4cfbc3cedea41bd0ed31955054dae6beb46 (diff)
ASoC: TWL4030: Replace comma with semicolon in probe function
The codec structure initialization statements should be separated by semicolons. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@nokia.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r--sound/soc/codecs/twl4030.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c
index 2a27f7b56726..74f0d65f0784 100644
--- a/sound/soc/codecs/twl4030.c
+++ b/sound/soc/codecs/twl4030.c
@@ -2192,7 +2192,7 @@ static int __devinit twl4030_codec_probe(struct platform_device *pdev)
2192 codec->write = twl4030_write; 2192 codec->write = twl4030_write;
2193 codec->set_bias_level = twl4030_set_bias_level; 2193 codec->set_bias_level = twl4030_set_bias_level;
2194 codec->dai = twl4030_dai; 2194 codec->dai = twl4030_dai;
2195 codec->num_dai = ARRAY_SIZE(twl4030_dai), 2195 codec->num_dai = ARRAY_SIZE(twl4030_dai);
2196 codec->reg_cache_size = sizeof(twl4030_reg); 2196 codec->reg_cache_size = sizeof(twl4030_reg);
2197 codec->reg_cache = kmemdup(twl4030_reg, sizeof(twl4030_reg), 2197 codec->reg_cache = kmemdup(twl4030_reg, sizeof(twl4030_reg),
2198 GFP_KERNEL); 2198 GFP_KERNEL);