diff options
author | Christophe Leroy <christophe.leroy@csgroup.eu> | 2023-11-06 19:12:05 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-16 18:53:09 -0500 |
commit | 15e871fc5d125f58e637d035e3aa5d01dc323e2f (patch) | |
tree | 57429341f62f390b477ecbdf423389fc7375362c /board/cssi/cmpc885/sdram.c | |
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 <christophe.leroy@csgroup.eu>
Diffstat (limited to 'board/cssi/cmpc885/sdram.c')
-rw-r--r-- | board/cssi/cmpc885/sdram.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 <charles.frey@c-s.fr> */ -#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; |