aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-11-01 12:28:12 -0400
committerTom Rini <trini@konsulko.com>2023-11-07 14:50:51 -0500
commit639eab42e52c2ce67c852f08350ffa6f1b855546 (patch)
tree618a70606525afcee216191de080bf385011e8ca
parentdd1365c2e93563e589892fded756a18a39bd8815 (diff)
downloadu-boot-639eab42e52c2ce67c852f08350ffa6f1b855546.zip
u-boot-639eab42e52c2ce67c852f08350ffa6f1b855546.tar.gz
u-boot-639eab42e52c2ce67c852f08350ffa6f1b855546.tar.bz2
mpc85xx: Add missing include in mpc85xx_sleep.c
This file needs the include file that provides the prototypes for flush_dcache() and others. Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--board/freescale/common/mpc85xx_sleep.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/freescale/common/mpc85xx_sleep.c b/board/freescale/common/mpc85xx_sleep.c
index 770fa0d..d4ca278 100644
--- a/board/freescale/common/mpc85xx_sleep.c
+++ b/board/freescale/common/mpc85xx_sleep.c
@@ -4,6 +4,7 @@
*/
#include <log.h>
+#include <asm/cache.h>
#include <asm/global_data.h>
#include <asm/immap_85xx.h>
#include "sleep.h"