diff options
author | Tom Rix <[email protected]> | 2020-11-01 07:28:44 -0800 |
---|---|---|
committer | Krzysztof Kozlowski <[email protected]> | 2020-11-02 19:46:46 +0100 |
commit | 74b01dc395364f647fe2729b6a775fd9df3f57a2 (patch) | |
tree | 13bfd1042c158631eaa79ceb60c6aa90a4db3d43 | |
parent | 3ebc0ef06e4a78522e9d1488dcf61b7d8fcfb792 (diff) |
soc: samsung: exynos5422-asv: remove unneeded semicolon
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
-rw-r--r-- | drivers/soc/samsung/exynos5422-asv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/samsung/exynos5422-asv.c b/drivers/soc/samsung/exynos5422-asv.c index 01bb3050d678..ca409a976e34 100644 --- a/drivers/soc/samsung/exynos5422-asv.c +++ b/drivers/soc/samsung/exynos5422-asv.c @@ -383,7 +383,7 @@ static int __asv_offset_voltage(unsigned int index) return 25000; default: return 0; - }; + } } static void exynos5422_asv_offset_voltage_setup(struct exynos_asv *asv) |