From: Paul Gortmaker Date: Sun, 31 Jul 2011 14:52:44 +0000 (-0400) Subject: arm: fix implicit memset usage in mach-omap2 platform X-Git-Tag: next-20110812~2^2~165 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b1c69537699affecbb570c6fbd011a1d3b673740;p=karo-tx-linux.git arm: fix implicit memset usage in mach-omap2 platform To fix things like this: arch/arm/mach-omap2/usb-tusb6010.c: In function 'tusb_set_async_mode': arch/arm/mach-omap2/usb-tusb6010.c:58: error: implicit declaration of function 'memset' Signed-off-by: Paul Gortmaker --- diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c index a5b7a236aa5b..2f122234412f 100644 --- a/arch/arm/mach-omap2/display.c +++ b/arch/arm/mach-omap2/display.c @@ -15,6 +15,7 @@ * GNU General Public License for more details. */ +#include #include #include #include diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c index d776ded9830d..5cdce10d6183 100644 --- a/arch/arm/mach-omap2/gpmc-onenand.c +++ b/arch/arm/mach-omap2/gpmc-onenand.c @@ -10,6 +10,7 @@ * published by the Free Software Foundation. */ +#include #include #include #include diff --git a/arch/arm/mach-omap2/usb-tusb6010.c b/arch/arm/mach-omap2/usb-tusb6010.c index 8dd26b765b7d..11760d2e2907 100644 --- a/arch/arm/mach-omap2/usb-tusb6010.c +++ b/arch/arm/mach-omap2/usb-tusb6010.c @@ -8,6 +8,7 @@ * published by the Free Software Foundation. */ +#include #include #include #include