diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-07-19 09:28:47 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-08-13 03:17:04 +0200 |
commit | 8a23133c7a2afc49d97b5b27caefe6847d32599e (patch) | |
tree | cb33e1fb60630067f4e6ca97b10dfae71dbdfc38 /drivers/clk/clk.c | |
parent | clk: fixed-rate: Convert into a module platform driver (diff) | |
download | linux-8a23133c7a2afc49d97b5b27caefe6847d32599e.tar.xz linux-8a23133c7a2afc49d97b5b27caefe6847d32599e.zip |
clk: use ERR_CAST() for __clk_create_clk()
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>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 0c6009a19957..6298715d0e44 100644 --- 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) |