diff options
| author | Christophe Leroy <[email protected]> | 2023-11-06 19:12:05 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-16 18:53:09 -0500 |
| commit | 15e871fc5d125f58e637d035e3aa5d01dc323e2f (patch) | |
| tree | 57429341f62f390b477ecbdf423389fc7375362c /board/cssi/cmpc885 | |
| parent | 80ac19fd56fecdb88c2d34b38a42639be81fa2a5 (diff) | |
board: cssi: Remove usage of common.h
Remove inclusion of common.h and add relevant
includes when necessary.
Signed-off-by: Christophe Leroy <[email protected]>
Diffstat (limited to 'board/cssi/cmpc885')
| -rw-r--r-- | board/cssi/cmpc885/cmpc885.c | 1 | ||||
| -rw-r--r-- | board/cssi/cmpc885/nand.c | 1 | ||||
| -rw-r--r-- | board/cssi/cmpc885/sdram.c | 3 |
3 files changed, 2 insertions, 3 deletions
diff --git a/board/cssi/cmpc885/cmpc885.c b/board/cssi/cmpc885/cmpc885.c index 5e6aa8b8cfa..e11cfafaa58 100644 --- a/board/cssi/cmpc885/cmpc885.c +++ b/board/cssi/cmpc885/cmpc885.c @@ -9,7 +9,6 @@ */ #include <env.h> -#include <common.h> #include <mpc8xx.h> #include <asm/cpm_8xx.h> #include <asm/io.h> diff --git a/board/cssi/cmpc885/nand.c b/board/cssi/cmpc885/nand.c index 38100046df8..b8989f226b0 100644 --- a/board/cssi/cmpc885/nand.c +++ b/board/cssi/cmpc885/nand.c @@ -7,7 +7,6 @@ */ #include <config.h> -#include <common.h> #include <nand.h> #include <linux/bitops.h> #include <linux/mtd/rawnand.h> diff --git a/board/cssi/cmpc885/sdram.c b/board/cssi/cmpc885/sdram.c index 7349b85ed2a..11a50c3a52d 100644 --- a/board/cssi/cmpc885/sdram.c +++ b/board/cssi/cmpc885/sdram.c @@ -4,13 +4,14 @@ * Charles Frey <[email protected]> */ -#include <common.h> #include <linux/sizes.h> #include <linux/delay.h> #include <init.h> #include <asm/io.h> #include <mpc8xx.h> #include <watchdog.h> +#include <asm/ppc.h> +#include <asm/immap_8xx.h> DECLARE_GLOBAL_DATA_PTR; |
