From: Stephen Warren Date: Mon, 19 Mar 2012 15:55:12 +0000 (-0600) Subject: ARM: tegra: Include assembler.h in sleep.S to fix build break X-Git-Tag: firefly_0821_release~3680^2~3195^2^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7175f80ba38a6b056508c4eadaab829593abbf2b;p=firefly-linux-kernel-4.4.55.git ARM: tegra: Include assembler.h in sleep.S to fix build break Commit 6f6f6a7 "ARM: create a common IOMEM definition" moved macro IOMEM(), and requires users to include . Fix Tegra's sleep.S to do so. This fixes: arch/arm/mach-tegra/sleep.S: Assembler messages: arch/arm/mach-tegra/sleep.S:77: Error: missing ')' arch/arm/mach-tegra/sleep.S:77: Error: garbage following instruction -- `movw r0,#:lower16:(0x60007000-0x60000000+IOMEM(0xFE200000))' Note: This only shows up after 0a25893 "ARM: tegra: update defconfig" Signed-off-by: Stephen Warren --- diff --git a/arch/arm/mach-tegra/sleep.S b/arch/arm/mach-tegra/sleep.S index 8f9fde161c34..5b20197bae7f 100644 --- a/arch/arm/mach-tegra/sleep.S +++ b/arch/arm/mach-tegra/sleep.S @@ -23,7 +23,9 @@ */ #include -#include + +#include + #include #include "flowctrl.h"