* [PATCH 1/2] ASoC: rt298: fix wrong setting of gpio2_en
@ 2015-10-21 8:18 Bard Liao
2015-10-21 8:18 ` [PATCH 2/2] ASoC: rt298: fix remove unnedded clk setting Bard Liao
2015-10-21 12:34 ` Applied "ASoC: rt298: fix wrong setting of gpio2_en" " Mark Brown
0 siblings, 2 replies; 5+ messages in thread
From: Bard Liao @ 2015-10-21 8:18 UTC (permalink / raw)
To: broonie, lgirdwood
Cc: oder_chiou, alsa-devel, lars, john.lin, ramesh.babu, Bard Liao,
senthilnathanx.veppur, flove
The register value to enable gpio2 was incorrect. So fix it.
Signed-off-by: Bard Liao <bardliao@realtek.com>
---
sound/soc/codecs/rt298.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c
index 56e5e1a..b3f795c 100644
--- a/sound/soc/codecs/rt298.c
+++ b/sound/soc/codecs/rt298.c
@@ -1217,7 +1217,7 @@ static int rt298_i2c_probe(struct i2c_client *i2c,
mdelay(10);
if (!rt298->pdata.gpio2_en)
- regmap_write(rt298->regmap, RT298_SET_DMIC2_DEFAULT, 0x4000);
+ regmap_write(rt298->regmap, RT298_SET_DMIC2_DEFAULT, 0x40);
else
regmap_write(rt298->regmap, RT298_SET_DMIC2_DEFAULT, 0);
--
1.8.1.1.439.g50a6b54
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] ASoC: rt298: fix remove unnedded clk setting
2015-10-21 8:18 [PATCH 1/2] ASoC: rt298: fix wrong setting of gpio2_en Bard Liao
@ 2015-10-21 8:18 ` Bard Liao
2015-10-21 12:34 ` Applied "ASoC: rt298: fix remove unnedded clk setting" to the asoc tree Mark Brown
2015-11-03 15:15 ` Mark Brown
2015-10-21 12:34 ` Applied "ASoC: rt298: fix wrong setting of gpio2_en" " Mark Brown
1 sibling, 2 replies; 5+ messages in thread
From: Bard Liao @ 2015-10-21 8:18 UTC (permalink / raw)
To: broonie, lgirdwood
Cc: oder_chiou, alsa-devel, lars, john.lin, ramesh.babu, Bard Liao,
senthilnathanx.veppur, flove
The bit is no longer present. So remove it.
Signed-off-by: Bard Liao <bardliao@realtek.com>
---
sound/soc/codecs/rt298.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c
index b3f795c..30c6de6 100644
--- a/sound/soc/codecs/rt298.c
+++ b/sound/soc/codecs/rt298.c
@@ -855,8 +855,6 @@ static int rt298_set_dai_sysclk(struct snd_soc_dai *dai,
snd_soc_update_bits(codec,
RT298_I2S_CTRL2, 0x0100, 0x0100);
snd_soc_update_bits(codec,
- RT298_PLL_CTRL, 0x4, 0x4);
- snd_soc_update_bits(codec,
RT298_PLL_CTRL1, 0x20, 0x0);
}
--
1.8.1.1.439.g50a6b54
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Applied "ASoC: rt298: fix remove unnedded clk setting" to the asoc tree
2015-10-21 8:18 ` [PATCH 2/2] ASoC: rt298: fix remove unnedded clk setting Bard Liao
@ 2015-10-21 12:34 ` Mark Brown
2015-11-03 15:15 ` Mark Brown
1 sibling, 0 replies; 5+ messages in thread
From: Mark Brown @ 2015-10-21 12:34 UTC (permalink / raw)
To: Bard Liao, Mark Brown; +Cc: alsa-devel
The patch
ASoC: rt298: fix remove unnedded clk setting
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From 38b409d66fa84e91afd5340fd772609185b20fa9 Mon Sep 17 00:00:00 2001
From: Bard Liao <bardliao@realtek.com>
Date: Wed, 21 Oct 2015 16:18:19 +0800
Subject: [PATCH] ASoC: rt298: fix remove unnedded clk setting
The bit is no longer present. So remove it.
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/codecs/rt298.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c
index ef8e23a..f00fe02 100644
--- a/sound/soc/codecs/rt298.c
+++ b/sound/soc/codecs/rt298.c
@@ -856,8 +856,6 @@ static int rt298_set_dai_sysclk(struct snd_soc_dai *dai,
snd_soc_update_bits(codec,
RT298_I2S_CTRL2, 0x0100, 0x0100);
snd_soc_update_bits(codec,
- RT298_PLL_CTRL, 0x4, 0x4);
- snd_soc_update_bits(codec,
RT298_PLL_CTRL1, 0x20, 0x0);
}
--
2.6.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Applied "ASoC: rt298: fix remove unnedded clk setting" to the asoc tree
2015-10-21 8:18 ` [PATCH 2/2] ASoC: rt298: fix remove unnedded clk setting Bard Liao
2015-10-21 12:34 ` Applied "ASoC: rt298: fix remove unnedded clk setting" to the asoc tree Mark Brown
@ 2015-11-03 15:15 ` Mark Brown
1 sibling, 0 replies; 5+ messages in thread
From: Mark Brown @ 2015-11-03 15:15 UTC (permalink / raw)
To: Bard Liao, Mark Brown; +Cc: alsa-devel
The patch
ASoC: rt298: fix remove unnedded clk setting
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From 38b409d66fa84e91afd5340fd772609185b20fa9 Mon Sep 17 00:00:00 2001
From: Bard Liao <bardliao@realtek.com>
Date: Wed, 21 Oct 2015 16:18:19 +0800
Subject: [PATCH] ASoC: rt298: fix remove unnedded clk setting
The bit is no longer present. So remove it.
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/codecs/rt298.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c
index ef8e23aab2d3..f00fe02d34ab 100644
--- a/sound/soc/codecs/rt298.c
+++ b/sound/soc/codecs/rt298.c
@@ -856,8 +856,6 @@ static int rt298_set_dai_sysclk(struct snd_soc_dai *dai,
snd_soc_update_bits(codec,
RT298_I2S_CTRL2, 0x0100, 0x0100);
snd_soc_update_bits(codec,
- RT298_PLL_CTRL, 0x4, 0x4);
- snd_soc_update_bits(codec,
RT298_PLL_CTRL1, 0x20, 0x0);
}
--
2.6.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Applied "ASoC: rt298: fix wrong setting of gpio2_en" to the asoc tree
2015-10-21 8:18 [PATCH 1/2] ASoC: rt298: fix wrong setting of gpio2_en Bard Liao
2015-10-21 8:18 ` [PATCH 2/2] ASoC: rt298: fix remove unnedded clk setting Bard Liao
@ 2015-10-21 12:34 ` Mark Brown
1 sibling, 0 replies; 5+ messages in thread
From: Mark Brown @ 2015-10-21 12:34 UTC (permalink / raw)
To: Bard Liao, Mark Brown; +Cc: alsa-devel
The patch
ASoC: rt298: fix wrong setting of gpio2_en
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From f8f2dc4a7127725383c93b501fcc4e47871b0a9d Mon Sep 17 00:00:00 2001
From: Bard Liao <bardliao@realtek.com>
Date: Wed, 21 Oct 2015 16:18:18 +0800
Subject: [PATCH] ASoC: rt298: fix wrong setting of gpio2_en
The register value to enable gpio2 was incorrect. So fix it.
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/codecs/rt298.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c
index d3e30a6..f823eb5 100644
--- a/sound/soc/codecs/rt298.c
+++ b/sound/soc/codecs/rt298.c
@@ -1214,7 +1214,7 @@ static int rt298_i2c_probe(struct i2c_client *i2c,
mdelay(10);
if (!rt298->pdata.gpio2_en)
- regmap_write(rt298->regmap, RT298_SET_DMIC2_DEFAULT, 0x4000);
+ regmap_write(rt298->regmap, RT298_SET_DMIC2_DEFAULT, 0x40);
else
regmap_write(rt298->regmap, RT298_SET_DMIC2_DEFAULT, 0);
--
2.6.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-11-03 15:16 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-21 8:18 [PATCH 1/2] ASoC: rt298: fix wrong setting of gpio2_en Bard Liao
2015-10-21 8:18 ` [PATCH 2/2] ASoC: rt298: fix remove unnedded clk setting Bard Liao
2015-10-21 12:34 ` Applied "ASoC: rt298: fix remove unnedded clk setting" to the asoc tree Mark Brown
2015-11-03 15:15 ` Mark Brown
2015-10-21 12:34 ` Applied "ASoC: rt298: fix wrong setting of gpio2_en" " Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox