From f377713fc6b5434c6912b419bed5406ef13be782 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Thu, 14 Jan 2021 00:58:53 +0100 Subject: soc/amd/cezanne,picasso/uart: remove unneeded struct name This struct isn't used anywhere else, so there's no need to name it. Change-Id: I22eda07f14096d2b7400e6ab715641ffd68fbc08 Signed-off-by: Felix Held Reported-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/49444 Reviewed-by: Raul Rangel Reviewed-by: Marshall Dawson Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- src/soc/amd/cezanne/uart.c | 2 +- src/soc/amd/picasso/uart.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/soc/amd/cezanne/uart.c b/src/soc/amd/cezanne/uart.c index 84f7c40078..9d10fd0eff 100644 --- a/src/soc/amd/cezanne/uart.c +++ b/src/soc/amd/cezanne/uart.c @@ -12,7 +12,7 @@ #include #include -static const struct _uart_info { +static const struct { uintptr_t base; struct soc_amd_gpio mux[2]; } uart_info[] = { diff --git a/src/soc/amd/picasso/uart.c b/src/soc/amd/picasso/uart.c index a77375e82a..24bc2c0f85 100644 --- a/src/soc/amd/picasso/uart.c +++ b/src/soc/amd/picasso/uart.c @@ -13,7 +13,7 @@ #include #include -static const struct _uart_info { +static const struct { uintptr_t base; struct soc_amd_gpio mux[2]; } uart_info[] = { -- cgit v1.2.3