diff options
| author | Tom Rini <[email protected]> | 2024-04-30 20:41:30 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-05-06 15:07:49 -0600 |
| commit | ab61cc7d98f690216361d3bab5950cd46fe75a10 (patch) | |
| tree | 90bc11138940b10e16aea82ef759bcf94d08466d | |
| parent | 60cf9f0232a8fbb9573f20ed07c106ca1726a1dc (diff) | |
board: congatec: Remove <common.h> and add needed includes
Remove <common.h> from this board vendor directory and when needed
add missing include files directly.
Acked-by: Oliver Graute <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | board/congatec/cgtqmx8/cgtqmx8.c | 2 | ||||
| -rw-r--r-- | board/congatec/cgtqmx8/spl.c | 1 | ||||
| -rw-r--r-- | board/congatec/common/mmc.c | 3 | ||||
| -rw-r--r-- | board/congatec/conga-qeval20-qa3-e3845/conga-qeval20-qa3.c | 1 |
4 files changed, 3 insertions, 4 deletions
diff --git a/board/congatec/cgtqmx8/cgtqmx8.c b/board/congatec/cgtqmx8/cgtqmx8.c index d8e5b1d6963..99c33a1943e 100644 --- a/board/congatec/cgtqmx8/cgtqmx8.c +++ b/board/congatec/cgtqmx8/cgtqmx8.c @@ -3,7 +3,7 @@ * Copyright 2018 congatec AG * Copyright (C) 2019 Oliver Graute <[email protected]> */ -#include <common.h> +#include <config.h> #include <errno.h> #include <linux/libfdt.h> #include <fsl_esdhc.h> diff --git a/board/congatec/cgtqmx8/spl.c b/board/congatec/cgtqmx8/spl.c index b432ce27459..242e794981b 100644 --- a/board/congatec/cgtqmx8/spl.c +++ b/board/congatec/cgtqmx8/spl.c @@ -4,7 +4,6 @@ * */ -#include <common.h> #include <dm.h> #include <fdt_support.h> #include <init.h> diff --git a/board/congatec/common/mmc.c b/board/congatec/common/mmc.c index bb7a3d4a9aa..74a189ab4d7 100644 --- a/board/congatec/common/mmc.c +++ b/board/congatec/common/mmc.c @@ -4,7 +4,8 @@ * Copyright 2018 NXP * */ -#include <common.h> + +#include <vsprintf.h> #include <linux/errno.h> #include <asm/io.h> #include <env.h> diff --git a/board/congatec/conga-qeval20-qa3-e3845/conga-qeval20-qa3.c b/board/congatec/conga-qeval20-qa3-e3845/conga-qeval20-qa3.c index 315b6dc5429..4197e88fb6f 100644 --- a/board/congatec/conga-qeval20-qa3-e3845/conga-qeval20-qa3.c +++ b/board/congatec/conga-qeval20-qa3-e3845/conga-qeval20-qa3.c @@ -3,7 +3,6 @@ * Copyright (C) 2016 Stefan Roese <[email protected]> */ -#include <common.h> #include <i2c.h> #include <init.h> #include <winbond_w83627.h> |
