diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-09-29 19:30:47 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-09-29 19:30:47 +0400 |
commit | df45eddc60e1ab4c81b61e240271eabb4fb176e8 (patch) | |
tree | 7cbaf1a7a191f7b6274afbc071bbc1453f73d668 /arch/m32r/lib/delay.c | |
parent | 929675d58c5b4883050804f2b48de2293803862d (diff) | |
parent | 81e4807303c416a0defdce8b23a6204416d33280 (diff) | |
download | linux-df45eddc60e1ab4c81b61e240271eabb4fb176e8.tar.xz |
Merge branch 'linux-m32r' of git://www.linux-m32r.org/git/takata/linux-2.6_dev
* 'linux-m32r' of git://www.linux-m32r.org/git/takata/linux-2.6_dev:
m32r/kernel/: cleanups
m32r: export __ndelay
m32r: export empty_zero_page
m32r: don't offer CONFIG_ISA
m32r: remove the unused NOHIGHMEM option
Diffstat (limited to 'arch/m32r/lib/delay.c')
-rw-r--r-- | arch/m32r/lib/delay.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/m32r/lib/delay.c b/arch/m32r/lib/delay.c index 59bfc34e0d9f..ced549be80f5 100644 --- a/arch/m32r/lib/delay.c +++ b/arch/m32r/lib/delay.c @@ -6,6 +6,7 @@ */ #include <linux/param.h> +#include <linux/module.h> #ifdef CONFIG_SMP #include <linux/sched.h> #include <asm/current.h> @@ -121,3 +122,4 @@ void __ndelay(unsigned long nsecs) { __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */ } +EXPORT_SYMBOL(__ndelay); |