diff options
| author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-08-01 13:50:15 -0400 | 
|---|---|---|
| committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:03 -0400 | 
| commit | 00cd1176801d676607115fdda6e1f64b7e1ce02f (patch) | |
| tree | da6ff83da896e831601a2141d7e4b516e75134b5 | |
| parent | ce7cf0731c328eec3694c97f4677e82a0d5d5064 (diff) | |
alpha: Add export.h for THIS_MODULE/EXPORT_SYMBOL
These files were getting it via the implicit module.h
presence that was everywhere.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
| -rw-r--r-- | arch/alpha/kernel/core_irongate.c | 1 | ||||
| -rw-r--r-- | arch/alpha/kernel/pci_iommu.c | 1 | ||||
| -rw-r--r-- | arch/alpha/kernel/setup.c | 1 | 
3 files changed, 3 insertions, 0 deletions
| diff --git a/arch/alpha/kernel/core_irongate.c b/arch/alpha/kernel/core_irongate.c index a872078497be..00096df0f6ad 100644 --- a/arch/alpha/kernel/core_irongate.c +++ b/arch/alpha/kernel/core_irongate.c @@ -303,6 +303,7 @@ irongate_init_arch(void)  #include <linux/vmalloc.h>  #include <linux/agp_backend.h>  #include <linux/agpgart.h> +#include <linux/export.h>  #include <asm/pgalloc.h>  #define GET_PAGE_DIR_OFF(addr) (addr >> 22) diff --git a/arch/alpha/kernel/pci_iommu.c b/arch/alpha/kernel/pci_iommu.c index 022c2748fa41..43610804987d 100644 --- a/arch/alpha/kernel/pci_iommu.c +++ b/arch/alpha/kernel/pci_iommu.c @@ -7,6 +7,7 @@  #include <linux/pci.h>  #include <linux/gfp.h>  #include <linux/bootmem.h> +#include <linux/export.h>  #include <linux/scatterlist.h>  #include <linux/log2.h>  #include <linux/dma-mapping.h> diff --git a/arch/alpha/kernel/setup.c b/arch/alpha/kernel/setup.c index cc0fd862cf26..32de56067e63 100644 --- a/arch/alpha/kernel/setup.c +++ b/arch/alpha/kernel/setup.c @@ -43,6 +43,7 @@  #include <asm/setup.h>  #include <asm/io.h>  #include <linux/log2.h> +#include <linux/export.h>  extern struct atomic_notifier_head panic_notifier_list;  static int alpha_panic_event(struct notifier_block *, unsigned long, void *); | 
