diff options
| author | Tom Rini <[email protected]> | 2024-04-30 20:42:05 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-05-07 08:00:25 -0600 |
| commit | febc01caed52a47bf5cf29f00f290ac1af07c3b5 (patch) | |
| tree | 79754fcd3b3ff62821b65f97f1091d4f1760e27c | |
| parent | c6cd26838f40a1156c417b5bca5f981ef053181b (diff) | |
board: keymile: Remove <common.h> and add needed includes
Remove <common.h> from this board vendor directory and when needed
add missing include files directly.
Reviewed-By: Holger Brunck <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | board/keymile/common/common.c | 2 | ||||
| -rw-r--r-- | board/keymile/common/ivm.c | 3 | ||||
| -rw-r--r-- | board/keymile/common/qrio.c | 2 | ||||
| -rw-r--r-- | board/keymile/km83xx/km83xx.c | 2 | ||||
| -rw-r--r-- | board/keymile/pg-wcom-ls102xa/ddr.c | 2 | ||||
| -rw-r--r-- | board/keymile/secu1/socfpga.c | 1 |
6 files changed, 6 insertions, 6 deletions
diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c index 991022ac833..9358c25dcb0 100644 --- a/board/keymile/common/common.c +++ b/board/keymile/common/common.c @@ -7,7 +7,7 @@ * Holger Brunck, Keymile GmbH Hannover, [email protected] */ -#include <common.h> +#include <config.h> #include <env.h> #include <ioports.h> #include <command.h> diff --git a/board/keymile/common/ivm.c b/board/keymile/common/ivm.c index 67db0c50f47..f01fe44303c 100644 --- a/board/keymile/common/ivm.c +++ b/board/keymile/common/ivm.c @@ -4,10 +4,11 @@ * Holger Brunck, Keymile GmbH Hannover, [email protected] */ -#include <common.h> #include <cli_hush.h> #include <env.h> #include <i2c.h> +#include <stdio.h> +#include <vsprintf.h> #include "common.h" #define MAC_STR_SZ 20 diff --git a/board/keymile/common/qrio.c b/board/keymile/common/qrio.c index b433f69675a..c8299483299 100644 --- a/board/keymile/common/qrio.c +++ b/board/keymile/common/qrio.c @@ -4,7 +4,7 @@ * Valentin Longchamp <[email protected]> */ -#include <common.h> +#include <config.h> #include <asm/io.h> #include <linux/bitops.h> diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index acd13105dd5..40718aa58a7 100644 --- a/board/keymile/km83xx/km83xx.c +++ b/board/keymile/km83xx/km83xx.c @@ -13,7 +13,7 @@ * Heiko Schocher, DENX Software Engineering, [email protected]. */ -#include <common.h> +#include <config.h> #include <env.h> #include <event.h> #include <fdt_support.h> diff --git a/board/keymile/pg-wcom-ls102xa/ddr.c b/board/keymile/pg-wcom-ls102xa/ddr.c index 556d39d4d4e..51938a1b4d8 100644 --- a/board/keymile/pg-wcom-ls102xa/ddr.c +++ b/board/keymile/pg-wcom-ls102xa/ddr.c @@ -4,7 +4,7 @@ * Copyright 2020 Hitachi Power Grids. All rights reserved. */ -#include <common.h> +#include <config.h> #include <fsl_ddr_sdram.h> #include <fsl_ddr_dimm_params.h> #include <asm/io.h> diff --git a/board/keymile/secu1/socfpga.c b/board/keymile/secu1/socfpga.c index 6a4cb21786a..1a626c52068 100644 --- a/board/keymile/secu1/socfpga.c +++ b/board/keymile/secu1/socfpga.c @@ -2,7 +2,6 @@ /* * Copyright (C) 2017-2020 Hitachi Power Grids */ -#include <common.h> #include <i2c.h> #include <asm/gpio.h> |
