Skip to content

Commit

Permalink
clk: uniphier: fix type of variable passed to regmap_read()
Browse files Browse the repository at this point in the history
The 3rd argument of regmap_read() takes a pointer to unsigned int.
This driver is saved just because u32 happens to be typedef'ed as
unsigned int, but we should not rely on that fact.  Change the
variable type just in case.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
masahir0y authored and bebarino committed Oct 17, 2016
1 parent 8236d9a commit c0ce317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/uniphier/clk-uniphier-mux.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static u8 uniphier_clk_mux_get_parent(struct clk_hw *hw)
struct uniphier_clk_mux *mux = to_uniphier_clk_mux(hw);
int num_parents = clk_hw_get_num_parents(hw);
int ret;
u32 val;
unsigned int val;
u8 i;

ret = regmap_read(mux->regmap, mux->reg, &val);
Expand Down

0 comments on commit c0ce317

Please sign in to comment.