projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c895db8
)
clk: hi6220: fix missing clk.h include
author
Ben Dooks
<ben.dooks@codethink.co.uk>
Tue, 7 Jun 2016 13:54:08 +0000
(14:54 +0100)
committer
Stephen Boyd
<sboyd@codeaurora.org>
Tue, 21 Jun 2016 00:45:13 +0000
(17:45 -0700)
Fix the warning from missing "clk.h" include which
defines hi6220_register_clkdiv() function.
drivers/clk/hisilicon/clkdivider-hi6220.c:102:12: warning: symbol 'hi6220_register_clkdiv' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/hisilicon/clkdivider-hi6220.c
patch
|
blob
|
history
diff --git
a/drivers/clk/hisilicon/clkdivider-hi6220.c
b/drivers/clk/hisilicon/clkdivider-hi6220.c
index 113eee8ed23a04f90d00518c6436259f1bc58649..a1c1f684ad585bbc5d64f3b7954473d442197398 100644
(file)
--- a/
drivers/clk/hisilicon/clkdivider-hi6220.c
+++ b/
drivers/clk/hisilicon/clkdivider-hi6220.c
@@
-18,6
+18,8
@@
#include <linux/err.h>
#include <linux/spinlock.h>
+#include "clk.h"
+
#define div_mask(width) ((1 << (width)) - 1)
/**