diff options
author | Peter Hüwe <PeterHuewe@gmx.de> | 2010-01-09 13:46:57 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-01-10 00:08:14 +0000 |
commit | 657b366a2827f35c020712e46696e56ab116d3c7 (patch) | |
tree | fa6e6ace276fd7685fbe8200b8d80daca4d7407d /arch/arm | |
parent | f892027c02f8d985455ba239ce280ac13b68a7fa (diff) | |
download | linux-657b366a2827f35c020712e46696e56ab116d3c7.tar.gz linux-657b366a2827f35c020712e46696e56ab116d3c7.tar.xz |
ARM: 5871/1: arch/arm: Fix build failure for lpd7a404_defconfig caused by missing includes
This patch fixes a build failure [1] due to missing includes
This should make the arm tree build again with lpd7a404_defconfig
References:
http://kisskb.ellerman.id.au/kisskb/buildresult/1983329/
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-lh7a40x/clocks.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-lh7a40x/clocks.c b/arch/arm/mach-lh7a40x/clocks.c index fcaf876f19b6..0651f96653f9 100644 --- a/arch/arm/mach-lh7a40x/clocks.c +++ b/arch/arm/mach-lh7a40x/clocks.c @@ -10,6 +10,8 @@ #include <mach/hardware.h> #include <mach/clocks.h> #include <linux/err.h> +#include <linux/device.h> +#include <linux/string.h> struct module; |