summaryrefslogtreecommitdiffstats
path: root/drivers/soc/aspeed
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2020-11-01 16:06:22 +0100
committerJoel Stanley <joel@jms.id.au>2020-11-19 13:31:14 +0100
commit959b981dc7bc144e0e256f8fe34b6ce23e839525 (patch)
tree3233e1eb5d71a614e6cda50272d34020cfaf58a8 /drivers/soc/aspeed
parentsoc: aspeed-lpc-ctrl: Fix driver name (diff)
downloadlinux-959b981dc7bc144e0e256f8fe34b6ce23e839525.tar.xz
linux-959b981dc7bc144e0e256f8fe34b6ce23e839525.zip
soc: aspeed: remove unneeded semicolon
A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix <trix@redhat.com> Link: https://lore.kernel.org/r/20201101150622.2288203-1-trix@redhat.com Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'drivers/soc/aspeed')
-rw-r--r--drivers/soc/aspeed/aspeed-socinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/aspeed/aspeed-socinfo.c b/drivers/soc/aspeed/aspeed-socinfo.c
index 26db42ef6aae..20a1d4aeb051 100644
--- a/drivers/soc/aspeed/aspeed-socinfo.c
+++ b/drivers/soc/aspeed/aspeed-socinfo.c
@@ -51,7 +51,7 @@ static const char *siliconid_to_rev(u32 siliconid)
return "A1";
case 3:
return "A2";
- };
+ }
return "??";
}