Re: [PATCH 01/15] clk: divider: replace bitfield width with mask

2014-11-20 Thread Tero Kristo
On 11/20/2014 01:15 AM, James Hogan wrote: From: Mike Turquette mturque...@linaro.org The forthcoming Device Tree binding for the divider clock type will use a bitfield mask instead of bitfield width, which is what the current basic divider implementation uses. This patch replaces the u8 width

Re: [PATCH 01/15] clk: divider: replace bitfield width with mask

2014-11-20 Thread James Hogan
On 20/11/14 11:19, Tero Kristo wrote: On 11/20/2014 01:15 AM, James Hogan wrote: - Updated assignment of clk_divider::width in imx, rockchip, st, sunxi, ti clock components to use mask instead (not tested), using the following semantic patch: Hi James/Mike, This patch currently

[PATCH 01/15] clk: divider: replace bitfield width with mask

2014-11-19 Thread James Hogan
From: Mike Turquette mturque...@linaro.org The forthcoming Device Tree binding for the divider clock type will use a bitfield mask instead of bitfield width, which is what the current basic divider implementation uses. This patch replaces the u8 width in struct clk_divider with a u32 mask. The