Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+5
+1
arch/avr32/mach-at32ap/clock.c
··· 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>
+1
arch/avr32/mach-at32ap/cpufreq.c
··· 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;
+1
arch/avr32/mach-at32ap/intc.c
··· 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
+1
arch/avr32/mach-at32ap/pio.c
··· 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>
+1
arch/avr32/mm/dma-coherent.c
··· 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>