6 May
2014
6 May
'14
3:46 a.m.
On May 5, 2014, at 20:24, "Mark Brown" broonie@kernel.org wrote:
On Mon, May 05, 2014 at 03:09:08PM -0500, Brian Austin wrote: This patch adds support for the Cirrus Logic Low Power Stereo I2C CODEC
Applied, thanks. A couple of minor issues it'd be good to look at incrementally.
- SOC_ENUM("PCMA Swap", pcma_swap_enum),
- SOC_ENUM("PCMB Swap", pcmb_swap_enum),
- SOC_ENUM("ADCA Swap", adca_swap_enum),
- SOC_ENUM("ADCB Swap", adcb_swap_enum),
Can these be moved to DAPM?
Yes they can
- regcache_cache_bypass(cs42l56->regmap, true);
You shouldn't need to do this, if no default is provided regmap should just go to hardware.
That's good to know, thanks
- dev_info(&i2c_client->dev, "Cirrus Logic CS42L56 ");
- dev_info(&i2c_client->dev, "Alpha Rev %X Metal Rev %X\n",
alpha_rev, metal_rev);
It's better to just put things on one line and ignore the line length warnings from checkpatch - this makes the code more grepable.
Yes indeed. I will gladly rework that one.
Thanks, Brian