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:
435779f
)
clk: use ERR_CAST() for __clk_create_clk()
author
Masahiro Yamada
<yamada.masahiro@socionext.com>
Tue, 19 Jul 2016 07:28:47 +0000
(16:28 +0900)
committer
Stephen Boyd
<sboyd@codeaurora.org>
Sat, 13 Aug 2016 01:17:04 +0000
(18:17 -0700)
This code is clear enough, but the intention will be even clearer
with this.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk.c
b/drivers/clk/clk.c
index 0c6009a1995798aaf4f0bb23cc2a08946f974baa..6298715d0e447c4ff9e3c282d700d7263fcedb76 100644
(file)
--- a/
drivers/clk/clk.c
+++ b/
drivers/clk/clk.c
@@
-2499,7
+2499,7
@@
struct clk *__clk_create_clk(struct clk_hw *hw, const char *dev_id,
/* This is to allow this function to be chained to others */
if (IS_ERR_OR_NULL(hw))
- return
(struct clk *) hw
;
+ return
ERR_CAST(hw)
;
clk = kzalloc(sizeof(*clk), GFP_KERNEL);
if (!clk)