Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 204241c2 authored by Daniel Walker's avatar Daniel Walker Committed by David Brown
Browse files

arm: msm: trout: fix compile failure



Fixes the following warnings,

arch/arm/mach-msm/board-trout.c: In function 'trout_init':
arch/arm/mach-msm/board-trout.c:71: error: 'system_rev' undeclared (first use in this function)
arch/arm/mach-msm/board-trout.c:71: error: (Each undeclared identifier is reported only once
arch/arm/mach-msm/board-trout.c:71: error: for each function it appears in.)

and

arch/arm/mach-msm/board-trout-panel.c: In function 'trout_init_panel':
arch/arm/mach-msm/board-trout-panel.c:267: error: 'system_rev' undeclared (first use in this function)
arch/arm/mach-msm/board-trout-panel.c:267: error: (Each undeclared identifier is reported only once
arch/arm/mach-msm/board-trout-panel.c:267: error: for each function it appears in.)

This came in with the following commit 9f97da78
which removes asm/system.h

Signed-off-by: default avatarDaniel Walker <dwalker@fifo99.com>
cc: David Howells <dhowells@redhat.com>
cc: Bryan Huntsman <bryanh@codeaurora.org>
cc: linux-arm-msm@vger.kernel.org
cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: default avatarDavid Brown <davidb@codeaurora.org>
parent 1c07ae43
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -12,6 +12,7 @@


#include <asm/io.h>
#include <asm/io.h>
#include <asm/mach-types.h>
#include <asm/mach-types.h>
#include <asm/system_info.h>


#include <mach/msm_fb.h>
#include <mach/msm_fb.h>
#include <mach/vreg.h>
#include <mach/vreg.h>
+1 −0
Original line number Original line Diff line number Diff line
@@ -19,6 +19,7 @@
#include <linux/platform_device.h>
#include <linux/platform_device.h>
#include <linux/clkdev.h>
#include <linux/clkdev.h>


#include <asm/system_info.h>
#include <asm/mach-types.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/map.h>