Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/68633 )
Change subject: soc/amd/*/uart: cleanup includes ......................................................................
soc/amd/*/uart: cleanup includes
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I59ab9c2eaa65d974d418123e87e9afe65b1168cc Reviewed-on: https://review.coreboot.org/c/coreboot/+/68633 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Elyes Haouas ehaouas@noos.fr Reviewed-by: Fred Reitberger reitbergerfred@gmail.com --- M src/soc/amd/cezanne/uart.c M src/soc/amd/mendocino/uart.c M src/soc/amd/morgana/uart.c M src/soc/amd/picasso/uart.c M src/soc/amd/stoneyridge/uart.c 5 files changed, 16 insertions(+), 9 deletions(-)
Approvals: build bot (Jenkins): Verified Elyes Haouas: Looks good to me, approved Fred Reitberger: Looks good to me, approved
diff --git a/src/soc/amd/cezanne/uart.c b/src/soc/amd/cezanne/uart.c index 3ac7deb..189a1e5 100644 --- a/src/soc/amd/cezanne/uart.c +++ b/src/soc/amd/cezanne/uart.c @@ -3,8 +3,6 @@ #include <amdblocks/gpio.h> #include <amdblocks/uart.h> #include <commonlib/helpers.h> -#include <console/console.h> -#include <device/device.h> #include <device/mmio.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> diff --git a/src/soc/amd/mendocino/uart.c b/src/soc/amd/mendocino/uart.c index d4bf2fe..03fc593 100644 --- a/src/soc/amd/mendocino/uart.c +++ b/src/soc/amd/mendocino/uart.c @@ -3,8 +3,6 @@ #include <amdblocks/gpio.h> #include <amdblocks/uart.h> #include <commonlib/helpers.h> -#include <console/console.h> -#include <device/device.h> #include <device/mmio.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> diff --git a/src/soc/amd/morgana/uart.c b/src/soc/amd/morgana/uart.c index 401a134..92cb2fe 100644 --- a/src/soc/amd/morgana/uart.c +++ b/src/soc/amd/morgana/uart.c @@ -5,8 +5,6 @@ #include <amdblocks/gpio.h> #include <amdblocks/uart.h> #include <commonlib/helpers.h> -#include <console/console.h> -#include <device/device.h> #include <device/mmio.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> diff --git a/src/soc/amd/picasso/uart.c b/src/soc/amd/picasso/uart.c index e3e3aa9..2120ad7 100644 --- a/src/soc/amd/picasso/uart.c +++ b/src/soc/amd/picasso/uart.c @@ -1,11 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-only */
-#include <console/console.h> -#include <commonlib/helpers.h> -#include <device/device.h> #include <device/mmio.h> #include <amdblocks/gpio.h> #include <amdblocks/uart.h> +#include <commonlib/helpers.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> #include <soc/iomap.h> diff --git a/src/soc/amd/stoneyridge/uart.c b/src/soc/amd/stoneyridge/uart.c index 86e2626..7fbba07 100644 --- a/src/soc/amd/stoneyridge/uart.c +++ b/src/soc/amd/stoneyridge/uart.c @@ -2,6 +2,7 @@
#include <amdblocks/gpio.h> #include <amdblocks/uart.h> +#include <commonlib/helpers.h> #include <soc/aoac_defs.h> #include <soc/gpio.h> #include <soc/iomap.h>