From e0568595eebf26543de3c67c90cb09acef0bdb9e Mon Sep 17 00:00:00 2001 From: Philipp Hug Date: Mon, 10 Sep 2018 19:46:42 +0200 Subject: soc/sifive: fix compiler warning Fix the following compiler warning on the latest toolchain: src/soc/sifive/fu540/otp.c:48:1: error: useless storage class specifier in empty declaration [-Werror] } __packed; ^ Change-Id: Ice87c821de7650ac547394efa2a4bcc5ae1ea668 Signed-off-by: Philipp Hug Reviewed-on: https://review.coreboot.org/28553 Tested-by: Patrick Georgi Reviewed-by: Patrick Georgi --- src/soc/sifive/fu540/otp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/sifive/fu540') diff --git a/src/soc/sifive/fu540/otp.c b/src/soc/sifive/fu540/otp.c index e6900fe1c1..73a5573fb6 100644 --- a/src/soc/sifive/fu540/otp.c +++ b/src/soc/sifive/fu540/otp.c @@ -29,7 +29,7 @@ * https://www.sifive.com/documentation/chips/freedom-u540-c000-manual/ */ -typedef struct sifive_otp_registers { +struct sifive_otp_registers { u32 pa; /* Address input */ u32 paio; /* Program address input */ u32 pas; /* Program redundancy cell selection input */ -- cgit v1.2.3