Commit 959b981d authored by Tom Rix's avatar Tom Rix Committed by Joel Stanley
Browse files

soc: aspeed: remove unneeded semicolon



A semicolon is not needed after a switch statement.

Signed-off-by: default avatarTom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201101150622.2288203-1-trix@redhat.com


Signed-off-by: default avatarJoel Stanley <joel@jms.id.au>
parent cd460be0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ static const char *siliconid_to_rev(u32 siliconid)
		return "A1";
	case 3:
		return "A2";
	};
	}

	return "??";
}