Re: [PATCH] clk: uniphier: fix type of variable passed to regmap_read()

2016-10-17 Thread Stephen Boyd
On 10/17, Masahiro Yamada wrote: > 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

Re: [PATCH] clk: uniphier: fix type of variable passed to regmap_read()

2016-10-17 Thread Stephen Boyd
On 10/17, Masahiro Yamada wrote: > 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

[PATCH] clk: uniphier: fix type of variable passed to regmap_read()

2016-10-16 Thread Masahiro Yamada
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 ---

[PATCH] clk: uniphier: fix type of variable passed to regmap_read()

2016-10-16 Thread Masahiro Yamada
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 ---