[alsa-devel] [PATCH] ASoC: rt5677: Modify the default value and add it to patch table
Modify the default value and add it to patch table
Signed-off-by: Oder Chiou oder_chiou@realtek.com --- sound/soc/codecs/rt5677.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/sound/soc/codecs/rt5677.c b/sound/soc/codecs/rt5677.c index 5d317c68..9ae2e84 100644 --- a/sound/soc/codecs/rt5677.c +++ b/sound/soc/codecs/rt5677.c @@ -55,7 +55,8 @@ static const struct regmap_range_cfg rt5677_ranges[] = { };
static const struct reg_default init_list[] = { - {RT5677_PR_BASE + 0x3d, 0x364d}, + {RT5677_ASRC_12, 0x0018}, + {RT5677_PR_BASE + 0x3d, 0x364d}, {RT5677_PR_BASE + 0x17, 0x4fc0}, {RT5677_PR_BASE + 0x13, 0x0312}, {RT5677_PR_BASE + 0x1e, 0x0000}, @@ -173,7 +174,7 @@ static const struct reg_default rt5677_reg[] = { {RT5677_ASRC_9 , 0x0000}, {RT5677_ASRC_10 , 0x0000}, {RT5677_ASRC_11 , 0x0000}, - {RT5677_ASRC_12 , 0x0008}, + {RT5677_ASRC_12 , 0x0018}, {RT5677_ASRC_13 , 0x0000}, {RT5677_ASRC_14 , 0x0000}, {RT5677_ASRC_15 , 0x0000},
On Fri, Nov 14, 2014 at 04:47:33PM +0800, Oder Chiou wrote:
Modify the default value and add it to patch table
static const struct reg_default init_list[] = {
- {RT5677_PR_BASE + 0x3d, 0x364d},
- {RT5677_ASRC_12, 0x0018},
- {RT5677_PR_BASE + 0x3d, 0x364d},
These are named registers, you really need to provide some more clear description of what is being changed and why (especially given that you are changing the patch table as well so it's clear that this isn't just the register default being wrong in the table).
participants (2)
-
Mark Brown
-
Oder Chiou