diff options
author | Joe Perches <joe@perches.com> | 2013-10-09 02:55:45 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-10-14 13:00:05 +0400 |
commit | 1d198f26c98e6501659d741d530f7b65e4b7aec3 (patch) | |
tree | 8b45bfe28932edb62f0d1e68c346face3e1bcd4b /sound/soc/tegra/tegra30_ahub.c | |
parent | cd4035e814b04c009ece9939396d06370c53ed44 (diff) | |
download | linux-1d198f26c98e6501659d741d530f7b65e4b7aec3.tar.xz |
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/tegra/tegra30_ahub.c')
-rw-r--r-- | sound/soc/tegra/tegra30_ahub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/tegra/tegra30_ahub.c b/sound/soc/tegra/tegra30_ahub.c index d554d46d08b5..805b1f399dc3 100644 --- a/sound/soc/tegra/tegra30_ahub.c +++ b/sound/soc/tegra/tegra30_ahub.c @@ -346,7 +346,7 @@ static bool tegra30_ahub_apbif_wr_rd_reg(struct device *dev, unsigned int reg) return true; default: break; - }; + } if (REG_IN_ARRAY(reg, CHANNEL_CTRL) || REG_IN_ARRAY(reg, CHANNEL_CLEAR) || @@ -381,7 +381,7 @@ static bool tegra30_ahub_apbif_volatile_reg(struct device *dev, return true; default: break; - }; + } if (REG_IN_ARRAY(reg, CHANNEL_CLEAR) || REG_IN_ARRAY(reg, CHANNEL_STATUS) || |