projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd460be
)
soc: aspeed: remove unneeded semicolon
author
Tom Rix
<trix@redhat.com>
Sun, 1 Nov 2020 15:06:22 +0000
(07:06 -0800)
committer
Joel Stanley
<joel@jms.id.au>
Thu, 19 Nov 2020 12:31:14 +0000
(23:01 +1030)
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>
drivers/soc/aspeed/aspeed-socinfo.c
patch
|
blob
|
history
diff --git
a/drivers/soc/aspeed/aspeed-socinfo.c
b/drivers/soc/aspeed/aspeed-socinfo.c
index 26db42ef6aae6216d6edbca60e506fda87bcd9b5..20a1d4aeb051971bfc39f4494e304fc7f2254b85 100644
(file)
--- 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 "??";
}