diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:30:25 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:41 -0600 |
commit | 43c1d9fe3277d8853fe647446ce563f17c532dfd (patch) | |
tree | 8ab2b495b91a37e89f5cc23f5e562185af4848c5 | |
parent | a37323a2cb6ef73a1e68fc81a24c2e77c087fb18 (diff) |
fsl_ifc.h: Add <asm/ppc.h>
In the case of PowerPC, this file needs to include <asm/ppc.h> in order
to resolve all of the references it makes.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | include/fsl_ifc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/fsl_ifc.h b/include/fsl_ifc.h index f9a0a7017d4..4991d932200 100644 --- a/include/fsl_ifc.h +++ b/include/fsl_ifc.h @@ -12,6 +12,8 @@ #include <part.h> #ifdef CONFIG_ARM #include <asm/arch/soc.h> +#else +#include <asm/ppc.h> #endif #define FSL_IFC_V1_1_0 0x01010000 |