From: Anatolij Gustschin Date: Fri, 1 Feb 2013 15:23:39 +0000 (+0100) Subject: powerpc/mpc5xxx: fix sparse warning for non static symbol X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=63410b0b80b6aa841d9abe212ad7f16899841b32;p=linux-beck.git powerpc/mpc5xxx: fix sparse warning for non static symbol Fix warning: symbol 'mpc5xxx_get_bus_frequency' was not declared. Should it be static? Signed-off-by: Anatolij Gustschin --- diff --git a/arch/powerpc/sysdev/mpc5xxx_clocks.c b/arch/powerpc/sysdev/mpc5xxx_clocks.c index 96f815a55dfd..5492dc5f56f4 100644 --- a/arch/powerpc/sysdev/mpc5xxx_clocks.c +++ b/arch/powerpc/sysdev/mpc5xxx_clocks.c @@ -9,9 +9,9 @@ #include #include #include +#include -unsigned int -mpc5xxx_get_bus_frequency(struct device_node *node) +unsigned long mpc5xxx_get_bus_frequency(struct device_node *node) { struct device_node *np; const unsigned int *p_bus_freq = NULL;