diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2008-05-18 20:47:20 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-18 13:28:50 -0700 |
commit | 91cf248396d18989f5f4090497723f4f90c8971f (patch) | |
tree | ced86e80ffa682c15f7923b506afd5866ee1f99f /arch | |
parent | 3f20a4ef57f4cbe8e2bbdb12640548795b32c6f7 (diff) | |
download | linux-stable-91cf248396d18989f5f4090497723f4f90c8971f.tar.gz linux-stable-91cf248396d18989f5f4090497723f4f90c8971f.tar.bz2 linux-stable-91cf248396d18989f5f4090497723f4f90c8971f.zip |
m68k: export m68k_mmutype
UIO needs m68k_mmutype:
ERROR: "m68k_mmutype" [drivers/uio/uio.ko] undefined!
(noticed by Christian T. Steigies)
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m68k/kernel/setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/m68k/kernel/setup.c b/arch/m68k/kernel/setup.c index bba650312fd9..06feb7946d34 100644 --- a/arch/m68k/kernel/setup.c +++ b/arch/m68k/kernel/setup.c @@ -41,11 +41,12 @@ #endif unsigned long m68k_machtype; -unsigned long m68k_cputype; EXPORT_SYMBOL(m68k_machtype); +unsigned long m68k_cputype; EXPORT_SYMBOL(m68k_cputype); unsigned long m68k_fputype; unsigned long m68k_mmutype; +EXPORT_SYMBOL(m68k_mmutype); #ifdef CONFIG_VME unsigned long vme_brdtype; EXPORT_SYMBOL(vme_brdtype); |