* [PATCH] ARM: mach-imx: clk-busy: Adapt to new the clk_mux structure
@ 2013-03-26 13:42 Fabio Estevam
2013-03-26 19:47 ` Mike Turquette
2013-03-27 9:47 ` Peter De Schrijver
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2013-03-26 13:42 UTC (permalink / raw)
To: linux-arm-kernel
Commit ce4f3313b05 (clk: add table lookup to mux) caused the following build
error on imx_v4_v5_defconfig/imx_v6_v7_defconfig:
arch/arm/mach-imx/clk-busy.c:172:11: error: 'struct clk_mux' has no member named 'width'
Fix it by passing the 'mask' field.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
arch/arm/mach-imx/clk-busy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-imx/clk-busy.c b/arch/arm/mach-imx/clk-busy.c
index 1ab91b5..85b728c 100644
--- a/arch/arm/mach-imx/clk-busy.c
+++ b/arch/arm/mach-imx/clk-busy.c
@@ -169,7 +169,7 @@ struct clk *imx_clk_busy_mux(const char *name, void __iomem *reg, u8 shift,
busy->mux.reg = reg;
busy->mux.shift = shift;
- busy->mux.width = width;
+ busy->mux.mask = BIT(width) - 1;
busy->mux.lock = &imx_ccm_lock;
busy->mux_ops = &clk_mux_ops;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] ARM: mach-imx: clk-busy: Adapt to new the clk_mux structure
2013-03-26 13:42 [PATCH] ARM: mach-imx: clk-busy: Adapt to new the clk_mux structure Fabio Estevam
@ 2013-03-26 19:47 ` Mike Turquette
2013-03-27 9:47 ` Peter De Schrijver
1 sibling, 0 replies; 3+ messages in thread
From: Mike Turquette @ 2013-03-26 19:47 UTC (permalink / raw)
To: linux-arm-kernel
Quoting Fabio Estevam (2013-03-26 06:42:10)
> Commit ce4f3313b05 (clk: add table lookup to mux) caused the following build
> error on imx_v4_v5_defconfig/imx_v6_v7_defconfig:
>
> arch/arm/mach-imx/clk-busy.c:172:11: error: 'struct clk_mux' has no member named 'width'
>
> Fix it by passing the 'mask' field.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Oops! I just sent the same patch to the list. I'll take yours into
clk-next since you were first Fabio ;-)
Thanks,
Mike
> ---
> arch/arm/mach-imx/clk-busy.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-imx/clk-busy.c b/arch/arm/mach-imx/clk-busy.c
> index 1ab91b5..85b728c 100644
> --- a/arch/arm/mach-imx/clk-busy.c
> +++ b/arch/arm/mach-imx/clk-busy.c
> @@ -169,7 +169,7 @@ struct clk *imx_clk_busy_mux(const char *name, void __iomem *reg, u8 shift,
>
> busy->mux.reg = reg;
> busy->mux.shift = shift;
> - busy->mux.width = width;
> + busy->mux.mask = BIT(width) - 1;
> busy->mux.lock = &imx_ccm_lock;
> busy->mux_ops = &clk_mux_ops;
>
> --
> 1.7.9.5
>
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] ARM: mach-imx: clk-busy: Adapt to new the clk_mux structure
2013-03-26 13:42 [PATCH] ARM: mach-imx: clk-busy: Adapt to new the clk_mux structure Fabio Estevam
2013-03-26 19:47 ` Mike Turquette
@ 2013-03-27 9:47 ` Peter De Schrijver
1 sibling, 0 replies; 3+ messages in thread
From: Peter De Schrijver @ 2013-03-27 9:47 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Mar 26, 2013 at 02:42:10PM +0100, Fabio Estevam wrote:
> Commit ce4f3313b05 (clk: add table lookup to mux) caused the following build
> error on imx_v4_v5_defconfig/imx_v6_v7_defconfig:
>
> arch/arm/mach-imx/clk-busy.c:172:11: error: 'struct clk_mux' has no member named 'width'
>
> Fix it by passing the 'mask' field.
>
Acked-by: Peter De Schrijver <pdeschrijver@nvidia.com>
Thanks for fixing this before I had time to do it.
Cheers,
Peter.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-03-27 9:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-26 13:42 [PATCH] ARM: mach-imx: clk-busy: Adapt to new the clk_mux structure Fabio Estevam
2013-03-26 19:47 ` Mike Turquette
2013-03-27 9:47 ` Peter De Schrijver
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).