Linux Sound subsystem development
 help / color / mirror / Atom feed
* [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-17  5:31 ` [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one David Glanzman
  2024-09-17  4:44   ` David Lawrence Glanzman
@ 2024-09-17  4:44   ` David Lawrence Glanzman
  2024-09-17  9:02   ` Mark Brown
  2024-09-17 15:40   ` David Lawrence Glanzman
  3 siblings, 0 replies; 9+ messages in thread
From: David Lawrence Glanzman @ 2024-09-17  4:44 UTC (permalink / raw)
  To: broonie; +Cc: linux-sound

Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop

Signed-off-by: David Lawrence Glanzman <davidglanzman@yahoo.com>
---
 sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
index 06349bf0b658..ace6328e91e3 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -444,6 +444,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
 			DMI_MATCH(DMI_BOARD_NAME, "8A3E"),
 		}
 	},
+	{
+		.driver_data = &acp6x_card,
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "HP"),
+			DMI_MATCH(DMI_BOARD_NAME, "8A7F"),
+		}
+	},
 	{
 		.driver_data = &acp6x_card,
 		.matches = {
-- 
2.43.0

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

* [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-17  5:31 ` [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one David Glanzman
@ 2024-09-17  4:44   ` David Lawrence Glanzman
  2024-09-19 11:01     ` Mark Brown
  2024-09-17  4:44   ` David Lawrence Glanzman
                     ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: David Lawrence Glanzman @ 2024-09-17  4:44 UTC (permalink / raw)
  To: broonie; +Cc: linux-sound

Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop

Signed-off-by: David Lawrence Glanzman <davidglanzman@yahoo.com>
---
 sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
index 06349bf0b658..ace6328e91e3 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -444,6 +444,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
 			DMI_MATCH(DMI_BOARD_NAME, "8A3E"),
 		}
 	},
+	{
+		.driver_data = &acp6x_card,
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "HP"),
+			DMI_MATCH(DMI_BOARD_NAME, "8A7F"),
+		}
+	},
 	{
 		.driver_data = &acp6x_card,
 		.matches = {
-- 
2.43.0

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

* [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
       [not found] <229243264.8919425.1726551100908.ref@mail.yahoo.com>
@ 2024-09-17  5:31 ` David Glanzman
  2024-09-17  4:44   ` David Lawrence Glanzman
                     ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: David Glanzman @ 2024-09-17  5:31 UTC (permalink / raw)
  To: broonie@kernel.org; +Cc: linux-sound@vger.kernel.org


Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop

Signed-off-by: David Lawrence Glanzman <davidglanzman@yahoo.com>
---
 sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
index 06349bf0b658..ace6328e91e3 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -444,6 +444,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
                        DMI_MATCH(DMI_BOARD_NAME, "8A3E"),
                }
        },
+       {
+               .driver_data = &acp6x_card,
+               .matches = {
+                       DMI_MATCH(DMI_BOARD_VENDOR, "HP"),
+                       DMI_MATCH(DMI_BOARD_NAME, "8A7F"),
+               }
+       },
        {
                .driver_data = &acp6x_card,
                .matches = {
--
2.43.0

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

* Re: [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-17  5:31 ` [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one David Glanzman
  2024-09-17  4:44   ` David Lawrence Glanzman
  2024-09-17  4:44   ` David Lawrence Glanzman
@ 2024-09-17  9:02   ` Mark Brown
  2024-09-17 15:10     ` David Lawrence Glanzman
  2024-09-17 15:40   ` David Lawrence Glanzman
  3 siblings, 1 reply; 9+ messages in thread
From: Mark Brown @ 2024-09-17  9:02 UTC (permalink / raw)
  To: David Glanzman; +Cc: linux-sound@vger.kernel.org

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

On Tue, Sep 17, 2024 at 05:31:40AM +0000, David Glanzman wrote:
> 
> Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop

This doesn't apply, it looks like you've had spaces converted into tabs.
Consider using git send-email or b4 

   https://b4.docs.kernel.org/en/latest/

to send the patch

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

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

* Re: [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-17  9:02   ` Mark Brown
@ 2024-09-17 15:10     ` David Lawrence Glanzman
  0 siblings, 0 replies; 9+ messages in thread
From: David Lawrence Glanzman @ 2024-09-17 15:10 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-sound@vger.kernel.org

On Tue, 2024-09-17 at 11:02 +0200, Mark Brown wrote:
> On Tue, Sep 17, 2024 at 05:31:40AM +0000, David Glanzman wrote:
> > 
> > Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop
> 
> This doesn't apply, it looks like you've had spaces converted into
> tabs.
> 

My apologies, I'll make a second attempt. I think my email client
converted tabs to spaces; assuming it needs to be tabs based on what I
cloned from git.kernel.org. Let me know if that's not right.

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

* [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-17  5:31 ` [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one David Glanzman
                     ` (2 preceding siblings ...)
  2024-09-17  9:02   ` Mark Brown
@ 2024-09-17 15:40   ` David Lawrence Glanzman
  2024-09-18  8:54     ` Mark Brown
  3 siblings, 1 reply; 9+ messages in thread
From: David Lawrence Glanzman @ 2024-09-17 15:40 UTC (permalink / raw)
  To: broonie; +Cc: linux-sound

Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop

Signed-off-by: David Lawrence Glanzman <davidglanzman@yahoo.com>
---
 sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-
mach.c
index 06349bf0b658..ace6328e91e3 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -444,6 +444,13 @@ static const struct dmi_system_id
yc_acp_quirk_table[] = {
 			DMI_MATCH(DMI_BOARD_NAME, "8A3E"),
 		}
 	},
+	{
+		.driver_data = &acp6x_card,
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "HP"),
+			DMI_MATCH(DMI_BOARD_NAME, "8A7F"),
+		}
+	},
 	{
 		.driver_data = &acp6x_card,
 		.matches = {


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

* Re: [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-17 15:40   ` David Lawrence Glanzman
@ 2024-09-18  8:54     ` Mark Brown
  2024-09-18 23:03       ` David Lawrence Glanzman
  0 siblings, 1 reply; 9+ messages in thread
From: Mark Brown @ 2024-09-18  8:54 UTC (permalink / raw)
  To: David Lawrence Glanzman; +Cc: linux-sound

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

On Tue, Sep 17, 2024 at 11:40:30AM -0400, David Lawrence Glanzman wrote:
> Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop
> 
> Signed-off-by: David Lawrence Glanzman <davidglanzman@yahoo.com>

This still doesn't apply:

Applying: ASoC: amd: yc: Add quirk for HP Dragonfly pro one
error: git diff header lacks filename information when removing 1 leading pathname component (line 6)
Patch failed at 0001 ASoC: amd: yc: Add quirk for HP Dragonfly pro one
hint: Use 'git am --show-current-patch=diff' to see the failed patch
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".

> diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-
> mach.c
> index 06349bf0b658..ace6328e91e3 100644
> --- a/sound/soc/amd/yc/acp6x-mach.c
> +++ b/sound/soc/amd/yc/acp6x-mach.c
> @@ -444,6 +444,13 @@ static const struct dmi_system_id
> yc_acp_quirk_table[] = {

This has been word wrapped, not sure if there's other issues.

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

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

* Re: [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-18  8:54     ` Mark Brown
@ 2024-09-18 23:03       ` David Lawrence Glanzman
  0 siblings, 0 replies; 9+ messages in thread
From: David Lawrence Glanzman @ 2024-09-18 23:03 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-sound

On Wed, 2024-09-18 at 10:54 +0200, Mark Brown wrote:
> This has been word wrapped, not sure if there's other issues.

I'll try again

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

* Re: [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
  2024-09-17  4:44   ` David Lawrence Glanzman
@ 2024-09-19 11:01     ` Mark Brown
  0 siblings, 0 replies; 9+ messages in thread
From: Mark Brown @ 2024-09-19 11:01 UTC (permalink / raw)
  To: David Lawrence Glanzman; +Cc: linux-sound

On Tue, 17 Sep 2024 00:44:08 -0400, David Lawrence Glanzman wrote:
> Adds a quirk entry to enable the mic on HP Dragonfly pro one laptop
> 
> 

Applied to

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

Thanks!

[1/1] ASoC: amd: yc: Add quirk for HP Dragonfly pro one
      commit: 84e8d59651879b2ff8499bddbbc9549b7f1a646b

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] 9+ messages in thread

end of thread, other threads:[~2024-09-19 11:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <229243264.8919425.1726551100908.ref@mail.yahoo.com>
2024-09-17  5:31 ` [PATCH] ASoC: amd: yc: Add quirk for HP Dragonfly pro one David Glanzman
2024-09-17  4:44   ` David Lawrence Glanzman
2024-09-19 11:01     ` Mark Brown
2024-09-17  4:44   ` David Lawrence Glanzman
2024-09-17  9:02   ` Mark Brown
2024-09-17 15:10     ` David Lawrence Glanzman
2024-09-17 15:40   ` David Lawrence Glanzman
2024-09-18  8:54     ` Mark Brown
2024-09-18 23:03       ` David Lawrence Glanzman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox