Re: [PATCH 3/5] mfd: arizona: Add DT binding for the DMIC references
On Mon, Mar 02, 2015 at 07:53:41AM +, Lee Jones wrote: > On Sat, 28 Feb 2015, Charles Keepax wrote: > > > Signed-off-by: Charles Keepax > > --- > > drivers/mfd/arizona-core.c | 10 ++ > > 1 files changed, 10 insertions(+), 0 deletions(-) > > Same here. Requires DT/Clk Ack. This specifies the reference voltage rather than clock so probably a clk ack is not appropriate, I guess that means I should perhaps add some clarification to the commit message though. Thanks, Charles -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Re: [PATCH 3/5] mfd: arizona: Add DT binding for the DMIC references
On Sat, 28 Feb 2015, Charles Keepax wrote: > Signed-off-by: Charles Keepax > --- > drivers/mfd/arizona-core.c | 10 ++ > 1 files changed, 10 insertions(+), 0 deletions(-) Same here. Requires DT/Clk Ack. > diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c > index dddaaef..6002ce9 100644 > --- a/drivers/mfd/arizona-core.c > +++ b/drivers/mfd/arizona-core.c > @@ -564,6 +564,16 @@ static int arizona_of_get_core_pdata(struct arizona > *arizona) > count++; > } > > + count = 0; > + of_property_for_each_u32(arizona->dev->of_node, "wlf,dmic-ref", prop, > + cur, val) { > + if (count == ARRAY_SIZE(arizona->pdata.dmic_ref)) > + break; > + > + arizona->pdata.dmic_ref[count] = val; > + count++; > + } > + > return 0; > } > -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
[PATCH 3/5] mfd: arizona: Add DT binding for the DMIC references
Signed-off-by: Charles Keepax --- drivers/mfd/arizona-core.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c index dddaaef..6002ce9 100644 --- a/drivers/mfd/arizona-core.c +++ b/drivers/mfd/arizona-core.c @@ -564,6 +564,16 @@ static int arizona_of_get_core_pdata(struct arizona *arizona) count++; } + count = 0; + of_property_for_each_u32(arizona->dev->of_node, "wlf,dmic-ref", prop, +cur, val) { + if (count == ARRAY_SIZE(arizona->pdata.dmic_ref)) + break; + + arizona->pdata.dmic_ref[count] = val; + count++; + } + return 0; } -- 1.7.2.5 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html