Re: [PATCH] ASoC: cs35l32: avoid uninitialized variable access

2016-03-07 Thread Austin, Brian
> On Mar 6, 2016, at 10:19 PM, Arnd Bergmann wrote: > > gcc warns about the possibilty of accessing a property read from > devicetree in cs35l32_i2c_probe() when it has not been initialized > because CONFIG_OF is disabled: > > sound/soc/codecs/cs35l32.c: In function 'cs35l32_i2c_probe': > sound

Re: [alsa-devel] [PATCH 8/8] Documentation: Add WM8998/WM1814 device tree bindings

2015-04-22 Thread Austin, Brian
> On Apr 21, 2015, at 07:38, Richard Fitzgerald > wrote: > > Signed-off-by: Richard Fitzgerald > --- > Documentation/devicetree/bindings/mfd/arizona.txt |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/Documentation/devicetree/bindings/mfd/arizona.txt > b/Docum

Re: [PATCH] sound / PM: Replace CONFIG_PM_RUNTIME with CONFIG_PM

2014-12-09 Thread Austin, Brian
On 12/5/14, 8:46 PM, "Rafael J. Wysocki" wrote: >From: Rafael J. Wysocki > >After commit b2b49ccbdd54 (PM: Kconfig: Set PM_RUNTIME if PM_SLEEP is >selected) PM_RUNTIME is always set if PM is set, so #ifdef blocks >depending on CONFIG_PM_RUNTIME may now be changed to depend on >CONFIG_PM. > >Re

Re: [alsa-devel] [PATCH 01/15] ASoC: CS42L51 and WM8962 codecs depend on INPUT

2014-05-01 Thread Austin, Brian
> On Apr 30, 2014, at 22:28, "Mark Brown" wrote: > >> On Thu, May 01, 2014 at 02:16:27AM +, Austin, Brian wrote: >> >> Apparently not. >> I would like to come up with a better solution than making INPUT a >> requirement. I just need some

Re: [alsa-devel] [PATCH 01/15] ASoC: CS42L51 and WM8962 codecs depend on INPUT

2014-04-30 Thread Austin, Brian
On Apr 30, 2014, at 8:54 PM, Austin, Brian wrote: > > >> On Apr 30, 2014, at 20:31, "Mark Brown" wrote: >> >>> On Tue, Apr 29, 2014 at 09:31:30PM -0500, Brian Austin wrote: >>> >>> I assume you mean the CS42L52 instead of the L51. IN

Re: [alsa-devel] [PATCH 01/15] ASoC: CS42L51 and WM8962 codecs depend on INPUT

2014-04-30 Thread Austin, Brian
> On Apr 30, 2014, at 20:31, "Mark Brown" wrote: > >> On Tue, Apr 29, 2014 at 09:31:30PM -0500, Brian Austin wrote: >> >> I assume you mean the CS42L52 instead of the L51. INPUT is used for a BEEP >> Generator but when I disable CONFIG_INPUT I do not get an error. Is there >> any information a

Re: [PATCH v2] ASoC: cs42888: Add codec driver support

2014-03-11 Thread Austin, Brian
>> On Mar 11, 2014, at 13:46, "Mark Brown" wrote: >> >> On Tue, Mar 11, 2014 at 04:55:58PM +0100, Lars-Peter Clausen wrote: >> On 03/11/2014 04:41 PM, Brian Austin wrote: > >>> So WRT the CS42888, this is one device in a series of 2 devices that are >>> register compatible with the only differ

Re: [PATCH] ASoC: cs42888: Add codec driver support

2014-02-24 Thread Austin, Brian
On Feb 24, 2014, at 10:06 AM, Nicolin Chen wrote: > On Mon, Feb 24, 2014 at 03:52:24PM +0000, Austin, Brian wrote: >>>> + if (!IS_ERR(cs42888->clk)) >>>> + clk_disable_unprepare(cs42888->clk); >>> >>> Does the device work without M

Re: [PATCH] ASoC: cs42888: Add codec driver support

2014-02-24 Thread Austin, Brian
> >> +/* Disable auto-mute */ >> +regmap_update_bits(cs42888->regmap, CS42888_TXCTL, >> + CS42888_TXCTL_AMUTE | CS42888_TXCTL_DAC_SZC_MASK, >> + CS42888_TXCTL_DAC_SZC_SR); > > Does this interfere with the manual mute controls or is it a separat