提交 d1f56f31 编写于 作者: K Kuninori Morimoto 提交者: Rich Felker

sh: add missing EXPORT_SYMBOL() for __delay

__delay() is used from kernel module.
We need EXPORT_SYMBOL(), otherwise we will get compile error.

ERROR: "__delay" [drivers/net/phy/mdio-cavium.ko] undefined!
Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: NRich Felker <dalias@libc.org>
上级 3125ddc4
...@@ -29,6 +29,7 @@ void __delay(unsigned long loops) ...@@ -29,6 +29,7 @@ void __delay(unsigned long loops)
: "0" (loops) : "0" (loops)
: "t"); : "t");
} }
EXPORT_SYMBOL(__delay);
inline void __const_udelay(unsigned long xloops) inline void __const_udelay(unsigned long xloops)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册