Commit ddb76257 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] m68knommu: export lib udelay symbol for modules

Export the udelay symbol so modules get access to it as well.
Signed-off-by: default avatarGreg Ungerer <gerg@snapgear.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9b97504b
...@@ -8,9 +8,12 @@ ...@@ -8,9 +8,12 @@
* published by the Free Software Foundation. * published by the Free Software Foundation.
*/ */
#include <linux/module.h>
#include <asm/param.h> #include <asm/param.h>
#include <asm/delay.h> #include <asm/delay.h>
EXPORT_SYMBOL(udelay);
void udelay(unsigned long usecs) void udelay(unsigned long usecs)
{ {
_udelay(usecs); _udelay(usecs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment