diff options
author | Govindraj.R <govindraj.raja@ti.com> | 2011-11-24 02:45:37 +0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-11-24 02:45:37 +0400 |
commit | 8770b07c2dff3cec2c751b289ee690137c88ea54 (patch) | |
tree | ab846781df66e3e352cae088305cc604854772c1 /arch/arm/mach-omap2/omap_l3_noc.c | |
parent | 52a2396249478018ea2e83d962a347d38d8cccbe (diff) | |
download | linux-8770b07c2dff3cec2c751b289ee690137c88ea54.tar.xz |
ARM: OMAP2+: Fix Compilation error when omap_l3_noc built as module
Fix below compilation failure on mainline kernel 3.2-rc1
when omap_l3_noc.c is built as module.
arch/arm/mach-omap2/omap_l3_noc.c:240: error: expected ',' or ';' before 'MODULE_DEVICE_TABLE'
Signed-off-by: Govindraj.R <govindraj.raja@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_l3_noc.c')
-rw-r--r-- | arch/arm/mach-omap2/omap_l3_noc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap_l3_noc.c b/arch/arm/mach-omap2/omap_l3_noc.c index 6a66aa5e2a5b..d15225ff5c49 100644 --- a/arch/arm/mach-omap2/omap_l3_noc.c +++ b/arch/arm/mach-omap2/omap_l3_noc.c @@ -237,7 +237,7 @@ static int __devexit omap4_l3_remove(struct platform_device *pdev) static const struct of_device_id l3_noc_match[] = { {.compatible = "ti,omap4-l3-noc", }, {}, -} +}; MODULE_DEVICE_TABLE(of, l3_noc_match); #else #define l3_noc_match NULL |