From: Stephen Hemminger Need this in later sky2 code. Signed-off-by: Stephen Hemminger Signed-off-by: Andrew Morton --- lib/reciprocal_div.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN lib/reciprocal_div.c~export-reciprocal_value-for-modules lib/reciprocal_div.c --- a/lib/reciprocal_div.c~export-reciprocal_value-for-modules +++ a/lib/reciprocal_div.c @@ -1,5 +1,6 @@ #include #include +#include u32 reciprocal_value(u32 k) { @@ -7,3 +8,4 @@ u32 reciprocal_value(u32 k) do_div(val, k); return (u32)val; } +EXPORT_SYMBOL(reciprocal_value); _