aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-10-08 18:55:45 -0400
committerTakashi Iwai <tiwai@suse.de>2013-10-14 05:00:05 -0400
commit1d198f26c98e6501659d741d530f7b65e4b7aec3 (patch)
tree8b45bfe28932edb62f0d1e68c346face3e1bcd4b /sound/soc/codecs
parentcd4035e814b04c009ece9939396d06370c53ed44 (diff)
sound: Remove unnecessary semicolons
These aren't necessary after switch and if blocks. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r--sound/soc/codecs/ak4641.c2
-rw-r--r--sound/soc/codecs/mc13783.c2
-rw-r--r--sound/soc/codecs/tas5086.c2
-rw-r--r--sound/soc/codecs/twl6040.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/sound/soc/codecs/ak4641.c b/sound/soc/codecs/ak4641.c
index 5f9af1fb76e8..49cc5f6d6dba 100644
--- a/sound/soc/codecs/ak4641.c
+++ b/sound/soc/codecs/ak4641.c
@@ -328,7 +328,7 @@ static int ak4641_i2s_hw_params(struct snd_pcm_substream *substream,
328 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { 328 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
329 ak4641->playback_fs = rate; 329 ak4641->playback_fs = rate;
330 ak4641_set_deemph(codec); 330 ak4641_set_deemph(codec);
331 }; 331 }
332 332
333 return 0; 333 return 0;
334} 334}
diff --git a/sound/soc/codecs/mc13783.c b/sound/soc/codecs/mc13783.c
index ea141e1d6f28..154433084708 100644
--- a/sound/soc/codecs/mc13783.c
+++ b/sound/soc/codecs/mc13783.c
@@ -382,7 +382,7 @@ static int mc13783_set_tdm_slot_dac(struct snd_soc_dai *dai,
382 break; 382 break;
383 default: 383 default:
384 return -EINVAL; 384 return -EINVAL;
385 }; 385 }
386 386
387 snd_soc_update_bits(codec, MC13783_SSI_NETWORK, mask, val); 387 snd_soc_update_bits(codec, MC13783_SSI_NETWORK, mask, val);
388 388
diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c
index 6d31d88f7204..e29cdb7ee232 100644
--- a/sound/soc/codecs/tas5086.c
+++ b/sound/soc/codecs/tas5086.c
@@ -429,7 +429,7 @@ static int tas5086_hw_params(struct snd_pcm_substream *substream,
429 default: 429 default:
430 dev_err(codec->dev, "Invalid bit width\n"); 430 dev_err(codec->dev, "Invalid bit width\n");
431 return -EINVAL; 431 return -EINVAL;
432 }; 432 }
433 433
434 ret = regmap_write(priv->regmap, TAS5086_SERIAL_DATA_IF, val); 434 ret = regmap_write(priv->regmap, TAS5086_SERIAL_DATA_IF, val);
435 if (ret < 0) 435 if (ret < 0)
diff --git a/sound/soc/codecs/twl6040.c b/sound/soc/codecs/twl6040.c
index 3c79dbb6c323..35059a242fa4 100644
--- a/sound/soc/codecs/twl6040.c
+++ b/sound/soc/codecs/twl6040.c
@@ -246,7 +246,7 @@ static bool twl6040_is_path_unmuted(struct snd_soc_codec *codec,
246 return priv->dl2_unmuted; 246 return priv->dl2_unmuted;
247 default: 247 default:
248 return 1; 248 return 1;
249 }; 249 }
250} 250}
251 251
252/* 252/*
@@ -1100,7 +1100,7 @@ static void twl6040_mute_path(struct snd_soc_codec *codec, enum twl6040_dai_id i
1100 break; 1100 break;
1101 default: 1101 default:
1102 break; 1102 break;
1103 }; 1103 }
1104} 1104}
1105 1105
1106static int twl6040_digital_mute(struct snd_soc_dai *dai, int mute) 1106static int twl6040_digital_mute(struct snd_soc_dai *dai, int mute)