All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/2] Fix apq8016 compat string
@ 2022-06-28  0:28 ` Bryan O'Donoghue
  0 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28  0:28 UTC (permalink / raw)
  To: lgirdwood, broonie, bjorn.andersson
  Cc: perex, tiwai, srinivas.kandagatla, robh+dt, krzk+dt, alsa-devel,
	linux-arm-msm, devicetree, bryan.odonoghue

V4:
- Adds Bjorn's RB to first patch
- Adds missing people to To/Cc list

V3:
- Marks qcom,lpass-cpu-apq8016 as deprecated instead of removing - Bjorn

V2:
- Adds Reviewed-by: - Srini
- Adds Fixes - Srini

V1:
Reusing the apq8016 on msm8939 I found running checkpatch that the compat
string for the LPASS was throwing a warning.

This is easily fixed by alinging the YAML, DTS and driver to the documented
compat string

-			compatible = "qcom,lpass-cpu-apq8016";
+			compatible = "qcom,apq8016-lpass-cpu";

Bryan O'Donoghue (2):
  ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  arm64: dts: qcom: Fix apq8016 compat string to match yaml

 arch/arm64/boot/dts/qcom/msm8916.dtsi | 2 +-
 sound/soc/qcom/lpass-apq8016.c        | 1 +
 sound/soc/qcom/lpass-cpu.c            | 5 +++++
 3 files changed, 7 insertions(+), 1 deletion(-)

-- 
2.36.1


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [PATCH v4 0/2] Fix apq8016 compat string
@ 2022-06-28  0:28 ` Bryan O'Donoghue
  0 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28  0:28 UTC (permalink / raw)
  To: lgirdwood, broonie, bjorn.andersson
  Cc: devicetree, alsa-devel, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, bryan.odonoghue, krzk+dt

V4:
- Adds Bjorn's RB to first patch
- Adds missing people to To/Cc list

V3:
- Marks qcom,lpass-cpu-apq8016 as deprecated instead of removing - Bjorn

V2:
- Adds Reviewed-by: - Srini
- Adds Fixes - Srini

V1:
Reusing the apq8016 on msm8939 I found running checkpatch that the compat
string for the LPASS was throwing a warning.

This is easily fixed by alinging the YAML, DTS and driver to the documented
compat string

-			compatible = "qcom,lpass-cpu-apq8016";
+			compatible = "qcom,apq8016-lpass-cpu";

Bryan O'Donoghue (2):
  ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  arm64: dts: qcom: Fix apq8016 compat string to match yaml

 arch/arm64/boot/dts/qcom/msm8916.dtsi | 2 +-
 sound/soc/qcom/lpass-apq8016.c        | 1 +
 sound/soc/qcom/lpass-cpu.c            | 5 +++++
 3 files changed, 7 insertions(+), 1 deletion(-)

-- 
2.36.1


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  2022-06-28  0:28 ` Bryan O'Donoghue
@ 2022-06-28  0:28   ` Bryan O'Donoghue
  -1 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28  0:28 UTC (permalink / raw)
  To: lgirdwood, broonie, bjorn.andersson
  Cc: perex, tiwai, srinivas.kandagatla, robh+dt, krzk+dt, alsa-devel,
	linux-arm-msm, devicetree, bryan.odonoghue

The documented yaml compat string for the apq8016 is
"qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
lpass compat strings the general form is "qcom,socnum-lpass-cpu".

We need to fix both the driver and dts to match.

Fixes: dc1ebd1811e9 ("ASoC: qcom: Add apq8016 lpass driver support")
Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
 sound/soc/qcom/lpass-apq8016.c | 1 +
 sound/soc/qcom/lpass-cpu.c     | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/sound/soc/qcom/lpass-apq8016.c b/sound/soc/qcom/lpass-apq8016.c
index 3efa133d1c641..abaf694ee9a3a 100644
--- a/sound/soc/qcom/lpass-apq8016.c
+++ b/sound/soc/qcom/lpass-apq8016.c
@@ -293,6 +293,7 @@ static struct lpass_variant apq8016_data = {
 
 static const struct of_device_id apq8016_lpass_cpu_device_id[] __maybe_unused = {
 	{ .compatible = "qcom,lpass-cpu-apq8016", .data = &apq8016_data },
+	{ .compatible = "qcom,apq8016-lpass-cpu", .data = &apq8016_data },
 	{}
 };
 MODULE_DEVICE_TABLE(of, apq8016_lpass_cpu_device_id);
diff --git a/sound/soc/qcom/lpass-cpu.c b/sound/soc/qcom/lpass-cpu.c
index e6846ad2b5fa4..53f9bf6581d33 100644
--- a/sound/soc/qcom/lpass-cpu.c
+++ b/sound/soc/qcom/lpass-cpu.c
@@ -1102,6 +1102,11 @@ int asoc_qcom_lpass_cpu_platform_probe(struct platform_device *pdev)
 	if (!match || !match->data)
 		return -EINVAL;
 
+	if (of_device_is_compatible(dev->of_node, "qcom,lpass-cpu-apq8016")) {
+		dev_warn(dev, "%s compatible is deprecated\n",
+			 match->compatible);
+	}
+
 	drvdata->variant = (struct lpass_variant *)match->data;
 	variant = drvdata->variant;
 
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
@ 2022-06-28  0:28   ` Bryan O'Donoghue
  0 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28  0:28 UTC (permalink / raw)
  To: lgirdwood, broonie, bjorn.andersson
  Cc: devicetree, alsa-devel, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, bryan.odonoghue, krzk+dt

The documented yaml compat string for the apq8016 is
"qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
lpass compat strings the general form is "qcom,socnum-lpass-cpu".

We need to fix both the driver and dts to match.

Fixes: dc1ebd1811e9 ("ASoC: qcom: Add apq8016 lpass driver support")
Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
 sound/soc/qcom/lpass-apq8016.c | 1 +
 sound/soc/qcom/lpass-cpu.c     | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/sound/soc/qcom/lpass-apq8016.c b/sound/soc/qcom/lpass-apq8016.c
index 3efa133d1c641..abaf694ee9a3a 100644
--- a/sound/soc/qcom/lpass-apq8016.c
+++ b/sound/soc/qcom/lpass-apq8016.c
@@ -293,6 +293,7 @@ static struct lpass_variant apq8016_data = {
 
 static const struct of_device_id apq8016_lpass_cpu_device_id[] __maybe_unused = {
 	{ .compatible = "qcom,lpass-cpu-apq8016", .data = &apq8016_data },
+	{ .compatible = "qcom,apq8016-lpass-cpu", .data = &apq8016_data },
 	{}
 };
 MODULE_DEVICE_TABLE(of, apq8016_lpass_cpu_device_id);
diff --git a/sound/soc/qcom/lpass-cpu.c b/sound/soc/qcom/lpass-cpu.c
index e6846ad2b5fa4..53f9bf6581d33 100644
--- a/sound/soc/qcom/lpass-cpu.c
+++ b/sound/soc/qcom/lpass-cpu.c
@@ -1102,6 +1102,11 @@ int asoc_qcom_lpass_cpu_platform_probe(struct platform_device *pdev)
 	if (!match || !match->data)
 		return -EINVAL;
 
+	if (of_device_is_compatible(dev->of_node, "qcom,lpass-cpu-apq8016")) {
+		dev_warn(dev, "%s compatible is deprecated\n",
+			 match->compatible);
+	}
+
 	drvdata->variant = (struct lpass_variant *)match->data;
 	variant = drvdata->variant;
 
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH v4 2/2] arm64: dts: qcom: Fix apq8016 compat string to match yaml
  2022-06-28  0:28 ` Bryan O'Donoghue
@ 2022-06-28  0:28   ` Bryan O'Donoghue
  -1 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28  0:28 UTC (permalink / raw)
  To: lgirdwood, broonie, bjorn.andersson
  Cc: perex, tiwai, srinivas.kandagatla, robh+dt, krzk+dt, alsa-devel,
	linux-arm-msm, devicetree, bryan.odonoghue

The documented yaml compat string for the apq8016 is
"qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
lpass compat strings the general form is "qcom,socnum-lpass-cpu".

We need to fix both the driver and dts to match.

Fixes: 3761a3618f55 ("arm64: dts: qcom: add lpass node")
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
 arch/arm64/boot/dts/qcom/msm8916.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi b/arch/arm64/boot/dts/qcom/msm8916.dtsi
index 05472510e29d5..a101b2871d5f7 100644
--- a/arch/arm64/boot/dts/qcom/msm8916.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi
@@ -1422,7 +1422,7 @@ sound: sound@7702000 {
 
 		lpass: audio-controller@7708000 {
 			status = "disabled";
-			compatible = "qcom,lpass-cpu-apq8016";
+			compatible = "qcom,apq8016-lpass-cpu";
 
 			/*
 			 * Note: Unlike the name would suggest, the SEC_I2S_CLK
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH v4 2/2] arm64: dts: qcom: Fix apq8016 compat string to match yaml
@ 2022-06-28  0:28   ` Bryan O'Donoghue
  0 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28  0:28 UTC (permalink / raw)
  To: lgirdwood, broonie, bjorn.andersson
  Cc: devicetree, alsa-devel, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, bryan.odonoghue, krzk+dt

The documented yaml compat string for the apq8016 is
"qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
lpass compat strings the general form is "qcom,socnum-lpass-cpu".

We need to fix both the driver and dts to match.

Fixes: 3761a3618f55 ("arm64: dts: qcom: add lpass node")
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
 arch/arm64/boot/dts/qcom/msm8916.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi b/arch/arm64/boot/dts/qcom/msm8916.dtsi
index 05472510e29d5..a101b2871d5f7 100644
--- a/arch/arm64/boot/dts/qcom/msm8916.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi
@@ -1422,7 +1422,7 @@ sound: sound@7702000 {
 
 		lpass: audio-controller@7708000 {
 			status = "disabled";
-			compatible = "qcom,lpass-cpu-apq8016";
+			compatible = "qcom,apq8016-lpass-cpu";
 
 			/*
 			 * Note: Unlike the name would suggest, the SEC_I2S_CLK
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  2022-06-28  0:28   ` Bryan O'Donoghue
@ 2022-06-28 10:54     ` Mark Brown
  -1 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 10:54 UTC (permalink / raw)
  To: Bryan O'Donoghue
  Cc: lgirdwood, bjorn.andersson, perex, tiwai, srinivas.kandagatla,
	robh+dt, krzk+dt, alsa-devel, linux-arm-msm, devicetree

[-- Attachment #1: Type: text/plain, Size: 628 bytes --]

On Tue, Jun 28, 2022 at 01:28:57AM +0100, Bryan O'Donoghue wrote:
> The documented yaml compat string for the apq8016 is
> "qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
> lpass compat strings the general form is "qcom,socnum-lpass-cpu".
> 
> We need to fix both the driver and dts to match.
> 
> Fixes: dc1ebd1811e9 ("ASoC: qcom: Add apq8016 lpass driver support")

This isn't really a fix and it's breaking an ABI which has been there
since 2015.  By tagging this as a fix you're doubtless going to get the
stable people trying to backport it which will most likely break some
users.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
@ 2022-06-28 10:54     ` Mark Brown
  0 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 10:54 UTC (permalink / raw)
  To: Bryan O'Donoghue
  Cc: devicetree, alsa-devel, lgirdwood, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, krzk+dt, bjorn.andersson

[-- Attachment #1: Type: text/plain, Size: 628 bytes --]

On Tue, Jun 28, 2022 at 01:28:57AM +0100, Bryan O'Donoghue wrote:
> The documented yaml compat string for the apq8016 is
> "qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
> lpass compat strings the general form is "qcom,socnum-lpass-cpu".
> 
> We need to fix both the driver and dts to match.
> 
> Fixes: dc1ebd1811e9 ("ASoC: qcom: Add apq8016 lpass driver support")

This isn't really a fix and it's breaking an ABI which has been there
since 2015.  By tagging this as a fix you're doubtless going to get the
stable people trying to backport it which will most likely break some
users.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  2022-06-28  0:28   ` Bryan O'Donoghue
@ 2022-06-28 11:03     ` Mark Brown
  -1 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 11:03 UTC (permalink / raw)
  To: Bryan O'Donoghue
  Cc: lgirdwood, bjorn.andersson, perex, tiwai, srinivas.kandagatla,
	robh+dt, krzk+dt, alsa-devel, linux-arm-msm, devicetree

[-- Attachment #1: Type: text/plain, Size: 334 bytes --]

On Tue, Jun 28, 2022 at 01:28:57AM +0100, Bryan O'Donoghue wrote:
> The documented yaml compat string for the apq8016 is
> "qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
> lpass compat strings the general form is "qcom,socnum-lpass-cpu".

This doesn't apply against current code, please check and resend.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
@ 2022-06-28 11:03     ` Mark Brown
  0 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 11:03 UTC (permalink / raw)
  To: Bryan O'Donoghue
  Cc: devicetree, alsa-devel, lgirdwood, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, krzk+dt, bjorn.andersson

[-- Attachment #1: Type: text/plain, Size: 334 bytes --]

On Tue, Jun 28, 2022 at 01:28:57AM +0100, Bryan O'Donoghue wrote:
> The documented yaml compat string for the apq8016 is
> "qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
> lpass compat strings the general form is "qcom,socnum-lpass-cpu".

This doesn't apply against current code, please check and resend.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  2022-06-28 11:03     ` Mark Brown
@ 2022-06-28 11:48       ` Bryan O'Donoghue
  -1 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28 11:48 UTC (permalink / raw)
  To: Mark Brown
  Cc: lgirdwood, bjorn.andersson, perex, tiwai, srinivas.kandagatla,
	robh+dt, krzk+dt, alsa-devel, linux-arm-msm, devicetree

On 28/06/2022 12:03, Mark Brown wrote:
> On Tue, Jun 28, 2022 at 01:28:57AM +0100, Bryan O'Donoghue wrote:
>> The documented yaml compat string for the apq8016 is
>> "qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
>> lpass compat strings the general form is "qcom,socnum-lpass-cpu".
> 
> This doesn't apply against current code, please check and resend.

What's the tree you are applying to here ?

I applied it to linux-next just last night..

https://git.linaro.org/people/bryan.odonoghue/kernel.git/log/?h=linux-next-27-06-22-msm8939-no-cpr-v4

https://git.linaro.org/people/bryan.odonoghue/kernel.git/commit/?h=linux-next-27-06-22-msm8939-no-cpr-v4&id=5822d52637eff65b826097634d9a99a9bf1bf2b7

---
bod

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
@ 2022-06-28 11:48       ` Bryan O'Donoghue
  0 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28 11:48 UTC (permalink / raw)
  To: Mark Brown
  Cc: devicetree, alsa-devel, lgirdwood, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, krzk+dt, bjorn.andersson

On 28/06/2022 12:03, Mark Brown wrote:
> On Tue, Jun 28, 2022 at 01:28:57AM +0100, Bryan O'Donoghue wrote:
>> The documented yaml compat string for the apq8016 is
>> "qcom,apq8016-lpass-cpu" not "qcom,lpass-cpu-apq8016". Looking at the other
>> lpass compat strings the general form is "qcom,socnum-lpass-cpu".
> 
> This doesn't apply against current code, please check and resend.

What's the tree you are applying to here ?

I applied it to linux-next just last night..

https://git.linaro.org/people/bryan.odonoghue/kernel.git/log/?h=linux-next-27-06-22-msm8939-no-cpr-v4

https://git.linaro.org/people/bryan.odonoghue/kernel.git/commit/?h=linux-next-27-06-22-msm8939-no-cpr-v4&id=5822d52637eff65b826097634d9a99a9bf1bf2b7

---
bod

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  2022-06-28 11:48       ` Bryan O'Donoghue
@ 2022-06-28 12:07         ` Mark Brown
  -1 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 12:07 UTC (permalink / raw)
  To: Bryan O'Donoghue
  Cc: lgirdwood, bjorn.andersson, perex, tiwai, srinivas.kandagatla,
	robh+dt, krzk+dt, alsa-devel, linux-arm-msm, devicetree

[-- Attachment #1: Type: text/plain, Size: 240 bytes --]

On Tue, Jun 28, 2022 at 12:48:20PM +0100, Bryan O'Donoghue wrote:
> On 28/06/2022 12:03, Mark Brown wrote:

> > This doesn't apply against current code, please check and resend.

> What's the tree you are applying to here ?

The ASoC tree.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
@ 2022-06-28 12:07         ` Mark Brown
  0 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 12:07 UTC (permalink / raw)
  To: Bryan O'Donoghue
  Cc: devicetree, alsa-devel, lgirdwood, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, krzk+dt, bjorn.andersson

[-- Attachment #1: Type: text/plain, Size: 240 bytes --]

On Tue, Jun 28, 2022 at 12:48:20PM +0100, Bryan O'Donoghue wrote:
> On 28/06/2022 12:03, Mark Brown wrote:

> > This doesn't apply against current code, please check and resend.

> What's the tree you are applying to here ?

The ASoC tree.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
  2022-06-28 12:07         ` Mark Brown
  (?)
@ 2022-06-28 13:25         ` Bryan O'Donoghue
  -1 siblings, 0 replies; 17+ messages in thread
From: Bryan O'Donoghue @ 2022-06-28 13:25 UTC (permalink / raw)
  To: Mark Brown, Bryan O'Donoghue
  Cc: lgirdwood, bjorn.andersson, perex, tiwai, srinivas.kandagatla,
	robh+dt, krzk+dt, alsa-devel, linux-arm-msm, devicetree

On 28/06/2022 13:07, Mark Brown wrote:
> On Tue, Jun 28, 2022 at 12:48:20PM +0100, Bryan O'Donoghue wrote:
>> On 28/06/2022 12:03, Mark Brown wrote:
> 
>>> This doesn't apply against current code, please check and resend.
> 
>> What's the tree you are applying to here ?
> 
> The ASoC tree.

V4 applies to your branches for-next, for-linus and the tag 
asoc-fix-v5.19-rc3

https://git.linaro.org/people/bryan.odonoghue/kernel.git/log/?h=8916-asoc-fix-v5.19-rc3

https://git.linaro.org/people/bryan.odonoghue/kernel.git/log/?h=8916-for-next

https://git.linaro.org/people/bryan.odonoghue/kernel.git/log/?h=8916-for-linus

I don't see an obvious master branch there.

I based V5 with the change you requested on  650516f1c1e0a - 
(asoc/for-next) Merge remote-tracking branch 'asoc/for-5.20'

https://yhbt.net/lore/all/20220628120435.3044939-1-bryan.odonoghue@linaro.org/

Please let me know if I have the wrong branch.

---
bod

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: (subset) [PATCH v4 0/2] Fix apq8016 compat string
  2022-06-28  0:28 ` Bryan O'Donoghue
@ 2022-06-28 13:25   ` Mark Brown
  -1 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 13:25 UTC (permalink / raw)
  To: lgirdwood, bryan.odonoghue, bjorn.andersson
  Cc: devicetree, alsa-devel, linux-arm-msm, tiwai, robh+dt,
	srinivas.kandagatla, krzk+dt

On Tue, 28 Jun 2022 01:28:56 +0100, Bryan O'Donoghue wrote:
> V4:
> - Adds Bjorn's RB to first patch
> - Adds missing people to To/Cc list
> 
> V3:
> - Marks qcom,lpass-cpu-apq8016 as deprecated instead of removing - Bjorn
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
      commit: 2a2ef688b1b03eea3a5b020d9bef50d015f619be

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

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: (subset) [PATCH v4 0/2] Fix apq8016 compat string
@ 2022-06-28 13:25   ` Mark Brown
  0 siblings, 0 replies; 17+ messages in thread
From: Mark Brown @ 2022-06-28 13:25 UTC (permalink / raw)
  To: lgirdwood, bryan.odonoghue, bjorn.andersson
  Cc: perex, devicetree, alsa-devel, srinivas.kandagatla,
	linux-arm-msm, krzk+dt, tiwai, robh+dt

On Tue, 28 Jun 2022 01:28:56 +0100, Bryan O'Donoghue wrote:
> V4:
> - Adds Bjorn's RB to first patch
> - Adds missing people to To/Cc list
> 
> V3:
> - Marks qcom,lpass-cpu-apq8016 as deprecated instead of removing - Bjorn
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml
      commit: 2a2ef688b1b03eea3a5b020d9bef50d015f619be

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

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2022-06-28 13:28 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-28  0:28 [PATCH v4 0/2] Fix apq8016 compat string Bryan O'Donoghue
2022-06-28  0:28 ` Bryan O'Donoghue
2022-06-28  0:28 ` [PATCH v4 1/2] ASoC: qcom: lpass: Fix apq8016 compat string to match yaml Bryan O'Donoghue
2022-06-28  0:28   ` Bryan O'Donoghue
2022-06-28 10:54   ` Mark Brown
2022-06-28 10:54     ` Mark Brown
2022-06-28 11:03   ` Mark Brown
2022-06-28 11:03     ` Mark Brown
2022-06-28 11:48     ` Bryan O'Donoghue
2022-06-28 11:48       ` Bryan O'Donoghue
2022-06-28 12:07       ` Mark Brown
2022-06-28 12:07         ` Mark Brown
2022-06-28 13:25         ` Bryan O'Donoghue
2022-06-28  0:28 ` [PATCH v4 2/2] arm64: dts: qcom: " Bryan O'Donoghue
2022-06-28  0:28   ` Bryan O'Donoghue
2022-06-28 13:25 ` (subset) [PATCH v4 0/2] Fix apq8016 compat string Mark Brown
2022-06-28 13:25   ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.