diff options
author | Anatolij Gustschin <agust@denx.de> | 2013-02-01 16:16:52 +0100 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2013-02-05 07:40:35 +0000 |
commit | ca88da3c57c8ef7f43f895a637cf06e7a225dbca (patch) | |
tree | c753555d62c060c80caae4d335f7154bb99b8fbe /arch/powerpc/include | |
parent | a9571a3837dc4b0b478297e4eaf84332d0f129d1 (diff) |
powerpc/mpc512x: fix sparce warnings for non static symbols
Fix warnings:
symbol 'clockctl' was not declared. Should it be static?
symbol 'rate_clks' was not declared. Should it be static?
symbol 'dev_clks' was not declared. Should it be static?
symbol 'mpc5121_clk_init' was not declared. Should it be static?
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/mpc5121.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/mpc5121.h b/arch/powerpc/include/asm/mpc5121.h index 8ae133eaf9fa..885c040d6194 100644 --- a/arch/powerpc/include/asm/mpc5121.h +++ b/arch/powerpc/include/asm/mpc5121.h @@ -68,5 +68,6 @@ struct mpc512x_lpc { }; int mpc512x_cs_config(unsigned int cs, u32 val); +int __init mpc5121_clk_init(void); #endif /* __ASM_POWERPC_MPC5121_H__ */ |