diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-02 09:40:11 +0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-11-04 17:41:06 -0700 |
commit | d4fc7eb5c597c65739faa776783b2e28bf0d7296 (patch) | |
tree | 76f8bddc118658db1d36af708db5646995d2c82a /arch | |
parent | 927dbbb22c54347a0ba3a4eab2cbc46260afad32 (diff) | |
download | op-kernel-dev-d4fc7eb5c597c65739faa776783b2e28bf0d7296.zip op-kernel-dev-d4fc7eb5c597c65739faa776783b2e28bf0d7296.tar.gz |
ARM: OMAP2+: l3-noc: Include linux/module.h
Include linux/module.h to fix below build error:
CC arch/arm/mach-omap2/omap_l3_noc.o
arch/arm/mach-omap2/omap_l3_noc.c:240: error: expected ',' or ';' before 'MODULE_DEVICE_TABLE'
arch/arm/mach-omap2/omap_l3_noc.c:250: error: 'THIS_MODULE' undeclared here (not in a function)
make[1]: *** [arch/arm/mach-omap2/omap_l3_noc.o] Error 1
make: *** [arch/arm/mach-omap2] Error 2
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/omap_l3_noc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_l3_noc.c b/arch/arm/mach-omap2/omap_l3_noc.c index c8b1bef..6a66aa5 100644 --- a/arch/arm/mach-omap2/omap_l3_noc.c +++ b/arch/arm/mach-omap2/omap_l3_noc.c @@ -20,6 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA */ +#include <linux/module.h> #include <linux/init.h> #include <linux/io.h> #include <linux/platform_device.h> |