diff options
author | Tom Rini | 2023-11-01 12:28:09 -0400 |
---|---|---|
committer | Tom Rini | 2023-11-07 14:50:51 -0500 |
commit | 3cb2e7cb5a9bccec0215e3d917870d2b46ee05bc (patch) | |
tree | 09fdd5a1d6605d8f6e7e6196a0bb80cc7a6b0b3a | |
parent | 5faf66a2d10cbc813e65005100d778577a16fa04 (diff) |
omap3: Add <asm/arch/omap3.h> to <asm/arch/cpu.h>
The include <asm/arch/cpu.h> references values in <asm/arch/omap3.h> and
so include it directly here rather than rely on indirect inclusion.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | arch/arm/include/asm/arch-omap3/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-omap3/cpu.h b/arch/arm/include/asm/arch-omap3/cpu.h index 3f0182e7665..d2fbf919a5b 100644 --- a/arch/arm/include/asm/arch-omap3/cpu.h +++ b/arch/arm/include/asm/arch-omap3/cpu.h @@ -7,6 +7,7 @@ #ifndef _CPU_H #define _CPU_H +#include <asm/arch/omap.h> #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__)) #include <asm/types.h> #endif /* !(__KERNEL_STRICT_NAMES || __ASSEMBLY__) */ |