Commit 09cf6a299c5eb022249a75d2124d2bbbe440684c

Authored by Paul Gortmaker
1 parent 12799fe452

avr32: add export.h to arch/avr32 for EXPORT_SYMBOL/THIS_MODULE

Add it in where the module.h implicit presence was doing
the job before.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Showing 5 changed files with 5 additions and 0 deletions Side-by-side Diff

arch/avr32/mach-at32ap/clock.c
... ... @@ -13,6 +13,7 @@
13 13 */
14 14 #include <linux/clk.h>
15 15 #include <linux/err.h>
  16 +#include <linux/export.h>
16 17 #include <linux/device.h>
17 18 #include <linux/string.h>
18 19 #include <linux/list.h>
arch/avr32/mach-at32ap/cpufreq.c
... ... @@ -18,6 +18,7 @@
18 18 #include <linux/io.h>
19 19 #include <linux/clk.h>
20 20 #include <linux/err.h>
  21 +#include <linux/export.h>
21 22 #include <asm/system.h>
22 23  
23 24 static struct clk *cpuclk;
arch/avr32/mach-at32ap/intc.c
... ... @@ -13,6 +13,7 @@
13 13 #include <linux/irq.h>
14 14 #include <linux/platform_device.h>
15 15 #include <linux/syscore_ops.h>
  16 +#include <linux/export.h>
16 17  
17 18 #include <asm/io.h>
18 19  
arch/avr32/mach-at32ap/pio.c
... ... @@ -10,6 +10,7 @@
10 10  
11 11 #include <linux/clk.h>
12 12 #include <linux/debugfs.h>
  13 +#include <linux/export.h>
13 14 #include <linux/fs.h>
14 15 #include <linux/platform_device.h>
15 16 #include <linux/irq.h>
arch/avr32/mm/dma-coherent.c
... ... @@ -8,6 +8,7 @@
8 8  
9 9 #include <linux/dma-mapping.h>
10 10 #include <linux/gfp.h>
  11 +#include <linux/export.h>
11 12  
12 13 #include <asm/addrspace.h>
13 14 #include <asm/cacheflush.h>