soc: aspeed: remove unneeded semicolon
authorTom Rix <trix@redhat.com>
Sun, 1 Nov 2020 15:06:22 +0000 (07:06 -0800)
committerJoel 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

index 26db42e..20a1d4a 100644 (file)
@@ -51,7 +51,7 @@ static const char *siliconid_to_rev(u32 siliconid)
                return "A1";
        case 3:
                return "A2";
-       };
+       }
 
        return "??";
 }