Commit 32c5dca1 authored by Tom Rix's avatar Tom Rix Committed by Mark Brown

ASoC: TSCS42xx: 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/20201101160312.2296146-1-trix@redhat.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3d13ea9b
......@@ -66,7 +66,7 @@ static bool tscs42xx_volatile(struct device *dev, unsigned int reg)
return true;
default:
return false;
};
}
}
static bool tscs42xx_precious(struct device *dev, unsigned int reg)
......@@ -81,7 +81,7 @@ static bool tscs42xx_precious(struct device *dev, unsigned int reg)
return true;
default:
return false;
};
}
}
static const struct regmap_config tscs42xx_regmap = {
......@@ -1294,7 +1294,7 @@ static int part_is_valid(struct tscs42xx *tscs42xx)
return true;
default:
return false;
};
}
}
static int set_sysclk(struct snd_soc_component *component)
......
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