diff options
author | Sudip Mukherjee <[email protected]> | 2015-09-17 16:01:49 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2015-09-17 21:16:07 -0700 |
commit | 14b97deddf8ddecce9f35165b667c55c73e14638 (patch) | |
tree | 75fa2d9f8b4d0dbf30bc03eb187e758f5af66d6f | |
parent | 969560d2afca76823cf97ec4f5c0fb7833e18553 (diff) |
alpha: lib: export __delay
__delay was not exported as a result while building with allmodconfig we
were getting build error of undefined symbol. __delay is being used by:
drivers/net/phy/mdio-octeon.c
Signed-off-by: Sudip Mukherjee <[email protected]>
Cc: Richard Henderson <[email protected]>
Cc: Ivan Kokshaysky <[email protected]>
Cc: Matt Turner <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | arch/alpha/lib/udelay.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/alpha/lib/udelay.c b/arch/alpha/lib/udelay.c index 69d52aa37bae..f2d81ff38aa6 100644 --- a/arch/alpha/lib/udelay.c +++ b/arch/alpha/lib/udelay.c @@ -30,6 +30,7 @@ __delay(int loops) " bgt %0,1b" : "=&r" (tmp), "=r" (loops) : "1"(loops)); } +EXPORT_SYMBOL(__delay); #ifdef CONFIG_SMP #define LPJ cpu_data[smp_processor_id()].loops_per_jiffy |