Commit 46713ed2 authored by Tom Rix's avatar Tom Rix Committed by Mark Brown

ASoC: bcm2835-i2s: remove unneeded semicolon

A semicolon is not needed after a switch statement.
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201101160037.2295512-1-trix@redhat.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent aaadc1f8
...@@ -797,7 +797,7 @@ static bool bcm2835_i2s_volatile_reg(struct device *dev, unsigned int reg) ...@@ -797,7 +797,7 @@ static bool bcm2835_i2s_volatile_reg(struct device *dev, unsigned int reg)
return true; return true;
default: default:
return false; return false;
}; }
} }
static bool bcm2835_i2s_precious_reg(struct device *dev, unsigned int reg) static bool bcm2835_i2s_precious_reg(struct device *dev, unsigned int reg)
...@@ -807,7 +807,7 @@ static bool bcm2835_i2s_precious_reg(struct device *dev, unsigned int reg) ...@@ -807,7 +807,7 @@ static bool bcm2835_i2s_precious_reg(struct device *dev, unsigned int reg)
return true; return true;
default: default:
return false; return false;
}; }
} }
static const struct regmap_config bcm2835_regmap_config = { static const struct regmap_config bcm2835_regmap_config = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment