diff options
author | Pete Popov <ppopov@embeddedalley.com> | 2005-09-16 01:42:27 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 20:32:24 +0200 |
commit | efe29c0f34dc3ee3511e46458f335edb7ee50327 (patch) | |
tree | 645c9e7a061984ded12ae1ecf33ed869b7b90fbf /arch/mips/au1000/common/setup.c | |
parent | Fix excessive signal latencies. (diff) | |
download | linux-efe29c0f34dc3ee3511e46458f335edb7ee50327.tar.xz linux-efe29c0f34dc3ee3511e46458f335edb7ee50327.zip |
- moved platform structure to platform.c
- fixed an iounmap warning
- export fixup_xx, needed by the module
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/au1000/common/setup.c')
-rw-r--r-- | arch/mips/au1000/common/setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/au1000/common/setup.c b/arch/mips/au1000/common/setup.c index c1e102e55adb..1ef15d5ef943 100644 --- a/arch/mips/au1000/common/setup.c +++ b/arch/mips/au1000/common/setup.c @@ -32,6 +32,7 @@ #include <linux/mm.h> #include <linux/delay.h> #include <linux/interrupt.h> +#include <linux/module.h> #include <asm/cpu.h> #include <asm/bootinfo.h> @@ -186,4 +187,5 @@ phys_t __fixup_bigphys_addr(phys_t phys_addr, phys_t size) /* default nop */ return phys_addr; } +EXPORT_SYMBOL(__fixup_bigphys_addr); #endif |