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>
This commit is contained in:
Tom Rix 2020-11-01 07:06:22 -08:00 committed by Joel Stanley
parent cd460be046
commit 959b981dc7

View file

@ -51,7 +51,7 @@ static const char *siliconid_to_rev(u32 siliconid)
return "A1";
case 3:
return "A2";
};
}
return "??";
}