[PATCH] soc: aspeed: remove unneeded semicolon
From: trix
Date: Sun Nov 01 2020 - 10:06:43 EST
From: Tom Rix <trix@xxxxxxxxxx>
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@xxxxxxxxxx>
---
drivers/soc/aspeed/aspeed-socinfo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 "??";
}
--
2.18.1