diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2022-10-18 19:22:21 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-20 16:40:59 +0000 |
commit | c6e4cc8873791b1c112ef8bd392a1aab1e940246 (patch) | |
tree | 8f7bae5d293804ad0838c5e25360df3ea8b3a8a3 | |
parent | acd98d87722adbf8cc94c770881cf3105b02786f (diff) |
soc/amd/*/uart: add missing soc/iomap.h include
soc/iomap.h provides the UART base address information used in the
uart_info struct.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I7defd135dc888cfc7d6e1c106d72116425560576
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68532
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
-rw-r--r-- | src/soc/amd/cezanne/uart.c | 1 | ||||
-rw-r--r-- | src/soc/amd/mendocino/uart.c | 1 | ||||
-rw-r--r-- | src/soc/amd/morgana/uart.c | 1 | ||||
-rw-r--r-- | src/soc/amd/picasso/uart.c | 3 |
4 files changed, 5 insertions, 1 deletions
diff --git a/src/soc/amd/cezanne/uart.c b/src/soc/amd/cezanne/uart.c index cfa8fc4cca..a0edf597d3 100644 --- a/src/soc/amd/cezanne/uart.c +++ b/src/soc/amd/cezanne/uart.c @@ -9,6 +9,7 @@ #include <device/mmio.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> +#include <soc/iomap.h> #include <soc/southbridge.h> #include <soc/uart.h> #include <types.h> diff --git a/src/soc/amd/mendocino/uart.c b/src/soc/amd/mendocino/uart.c index 1b3f5693dd..3b1cf6d513 100644 --- a/src/soc/amd/mendocino/uart.c +++ b/src/soc/amd/mendocino/uart.c @@ -9,6 +9,7 @@ #include <device/mmio.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> +#include <soc/iomap.h> #include <soc/southbridge.h> #include <soc/uart.h> #include <types.h> diff --git a/src/soc/amd/morgana/uart.c b/src/soc/amd/morgana/uart.c index 5569001de7..8a77c87931 100644 --- a/src/soc/amd/morgana/uart.c +++ b/src/soc/amd/morgana/uart.c @@ -11,6 +11,7 @@ #include <device/mmio.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> +#include <soc/iomap.h> #include <soc/southbridge.h> #include <soc/uart.h> #include <types.h> diff --git a/src/soc/amd/picasso/uart.c b/src/soc/amd/picasso/uart.c index b9fff85776..327cce8390 100644 --- a/src/soc/amd/picasso/uart.c +++ b/src/soc/amd/picasso/uart.c @@ -8,8 +8,9 @@ #include <amdblocks/aoac.h> #include <amdblocks/uart.h> #include <soc/aoac_defs.h> -#include <soc/southbridge.h> #include <soc/gpio.h> +#include <soc/iomap.h> +#include <soc/southbridge.h> #include <soc/uart.h> #include <types.h> |