From: Sam Protsenko Date: Tue, 27 Feb 2018 21:45:03 +0000 (+0200) Subject: omap: Fix AM335x build with enabled fastboot flash X-Git-Tag: v2018.05-rc1~97 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7a390c0e256f722aec3e54455633f9307b2ba294;p=u-boot omap: Fix AM335x build with enabled fastboot flash When enabling CONFIG_FASTBOOT_FLASH in am335x_boneblack_defconfig, next build errors and warnings occur: arch/arm/mach-omap2/utils.c: In function ‘omap_set_fastboot_cpu’: arch/arm/mach-omap2/utils.c:26:16: warning: implicit declaration of function ‘omap_revision’ [-Wimplicit-function-declaration] u32 cpu_rev = omap_revision(); ^~~~~~~~~~~~~ arch/arm/mach-omap2/utils.c:29:7: error: ‘DRA762_ES1_0’ undeclared (first use in this function) Include asm/omap_common.h explicitly to avoid those. Signed-off-by: Sam Protsenko Acked-by: Lukasz Majewski Reviewed-by: Tom Rini --- diff --git a/arch/arm/mach-omap2/utils.c b/arch/arm/mach-omap2/utils.c index d11670c0ee..7d1ca274bf 100644 --- a/arch/arm/mach-omap2/utils.c +++ b/arch/arm/mach-omap2/utils.c @@ -7,6 +7,8 @@ #include #include #include +#include + static void do_cancel_out(u32 *num, u32 *den, u32 factor) { while (1) {