linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk
@ 2018-11-16 19:24 Connor McAdams
  2018-11-16 19:24 ` [PATCH 2/2] ALSA: hda/ca0132 - fix AE-5 pincfg Connor McAdams
  2018-11-19 11:20 ` [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk Takashi Iwai
  0 siblings, 2 replies; 4+ messages in thread
From: Connor McAdams @ 2018-11-16 19:24 UTC (permalink / raw)
  Cc: Connor McAdams, Jaroslav Kysela, Takashi Iwai, Takashi Sakamoto,
	Alastair Bridgewater, alsa-devel, linux-kernel

This patch adds a new PCI subsys ID for the ZxR, as found and tested by
other users. Without a way to know if any Z's use it as well, it keeps
the quirk of QUIRK_SBZ and goes through the HDA subsys test function.

Signed-off-by: Connor McAdams <conmanx360@gmail.com>
---
 sound/pci/hda/patch_ca0132.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c
index 9c0b94ba786e..4c21bd24bcbd 100644
--- a/sound/pci/hda/patch_ca0132.c
+++ b/sound/pci/hda/patch_ca0132.c
@@ -1189,6 +1189,7 @@ static const struct snd_pci_quirk ca0132_quirks[] = {
 	SND_PCI_QUIRK(0x1028, 0x0708, "Alienware 15 R2 2016", QUIRK_ALIENWARE),
 	SND_PCI_QUIRK(0x1102, 0x0010, "Sound Blaster Z", QUIRK_SBZ),
 	SND_PCI_QUIRK(0x1102, 0x0023, "Sound Blaster Z", QUIRK_SBZ),
+	SND_PCI_QUIRK(0x1102, 0x0033, "Sound Blaster ZxR", QUIRK_SBZ),
 	SND_PCI_QUIRK(0x1458, 0xA016, "Recon3Di", QUIRK_R3DI),
 	SND_PCI_QUIRK(0x1458, 0xA026, "Gigabyte G1.Sniper Z97", QUIRK_R3DI),
 	SND_PCI_QUIRK(0x1458, 0xA036, "Gigabyte GA-Z170X-Gaming 7", QUIRK_R3DI),
-- 
2.18.1


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

* [PATCH 2/2] ALSA: hda/ca0132 - fix AE-5 pincfg
  2018-11-16 19:24 [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk Connor McAdams
@ 2018-11-16 19:24 ` Connor McAdams
  2018-11-19 11:20   ` Takashi Iwai
  2018-11-19 11:20 ` [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk Takashi Iwai
  1 sibling, 1 reply; 4+ messages in thread
From: Connor McAdams @ 2018-11-16 19:24 UTC (permalink / raw)
  Cc: Connor McAdams, Jaroslav Kysela, Takashi Iwai, Takashi Sakamoto,
	Alastair Bridgewater, alsa-devel, linux-kernel

This patch fixes the pincfg assignment for the AE-5, which was
previously using the Recon3D pincfg's by mistake.

Signed-off-by: Connor McAdams <conmanx360@gmail.com>
---
 sound/pci/hda/patch_ca0132.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c
index 4c21bd24bcbd..eee432287c15 100644
--- a/sound/pci/hda/patch_ca0132.c
+++ b/sound/pci/hda/patch_ca0132.c
@@ -8527,7 +8527,7 @@ static void ca0132_config(struct hda_codec *codec)
 		break;
 	case QUIRK_AE5:
 		codec_dbg(codec, "%s: QUIRK_AE5 applied.\n", __func__);
-		snd_hda_apply_pincfgs(codec, r3di_pincfgs);
+		snd_hda_apply_pincfgs(codec, ae5_pincfgs);
 		break;
 	default:
 		break;
-- 
2.18.1


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

* Re: [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk
  2018-11-16 19:24 [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk Connor McAdams
  2018-11-16 19:24 ` [PATCH 2/2] ALSA: hda/ca0132 - fix AE-5 pincfg Connor McAdams
@ 2018-11-19 11:20 ` Takashi Iwai
  1 sibling, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2018-11-19 11:20 UTC (permalink / raw)
  To: Connor McAdams
  Cc: alsa-devel, Alastair Bridgewater, Jaroslav Kysela,
	Takashi Sakamoto, linux-kernel

On Fri, 16 Nov 2018 20:24:55 +0100,
Connor McAdams wrote:
> 
> This patch adds a new PCI subsys ID for the ZxR, as found and tested by
> other users. Without a way to know if any Z's use it as well, it keeps
> the quirk of QUIRK_SBZ and goes through the HDA subsys test function.
> 
> Signed-off-by: Connor McAdams <conmanx360@gmail.com>

Applied, thanks.


Takashi

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

* Re: [PATCH 2/2] ALSA: hda/ca0132 - fix AE-5 pincfg
  2018-11-16 19:24 ` [PATCH 2/2] ALSA: hda/ca0132 - fix AE-5 pincfg Connor McAdams
@ 2018-11-19 11:20   ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2018-11-19 11:20 UTC (permalink / raw)
  To: Connor McAdams
  Cc: alsa-devel, Alastair Bridgewater, Jaroslav Kysela,
	Takashi Sakamoto, linux-kernel

On Fri, 16 Nov 2018 20:24:56 +0100,
Connor McAdams wrote:
> 
> This patch fixes the pincfg assignment for the AE-5, which was
> previously using the Recon3D pincfg's by mistake.
> 
> Signed-off-by: Connor McAdams <conmanx360@gmail.com>

Applied, thanks.


Takashi

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

end of thread, other threads:[~2018-11-19 11:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-16 19:24 [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk Connor McAdams
2018-11-16 19:24 ` [PATCH 2/2] ALSA: hda/ca0132 - fix AE-5 pincfg Connor McAdams
2018-11-19 11:20   ` Takashi Iwai
2018-11-19 11:20 ` [PATCH 1/2] ALSA: hda/ca0132 - Add new ZxR quirk Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).