* [PATCH] ALSA: hda - Add Geminilake PCI ID
@ 2017-02-24 22:42 Vinod Koul
2017-02-25 7:29 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Vinod Koul @ 2017-02-24 22:42 UTC (permalink / raw)
To: alsa-devel; +Cc: liam.r.girdwood, tiwai, broonie, Vinod Koul, patches.audio
Geminilake is another Intel part, so need to add PCI ID for it.
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
---
sound/pci/hda/hda_intel.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 16108f0eb688..c8256a89375a 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2255,6 +2255,9 @@ static void azx_shutdown(struct pci_dev *pci)
/* Broxton-T */
{ PCI_DEVICE(0x8086, 0x1a98),
.driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_BROXTON },
+ /* Gemini-Lake */
+ { PCI_DEVICE(0x8086, 0x3198),
+ .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_BROXTON },
/* Haswell */
{ PCI_DEVICE(0x8086, 0x0a0c),
.driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL },
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda - Add Geminilake PCI ID
2017-02-24 22:42 [PATCH] ALSA: hda - Add Geminilake PCI ID Vinod Koul
@ 2017-02-25 7:29 ` Takashi Iwai
2017-02-25 7:36 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2017-02-25 7:29 UTC (permalink / raw)
To: Vinod Koul; +Cc: liam.r.girdwood, patches.audio, alsa-devel, broonie
On Fri, 24 Feb 2017 23:42:40 +0100,
Vinod Koul wrote:
>
> Geminilake is another Intel part, so need to add PCI ID for it.
>
> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Applied, thanks.
Takashi
> ---
> sound/pci/hda/hda_intel.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
> index 16108f0eb688..c8256a89375a 100644
> --- a/sound/pci/hda/hda_intel.c
> +++ b/sound/pci/hda/hda_intel.c
> @@ -2255,6 +2255,9 @@ static void azx_shutdown(struct pci_dev *pci)
> /* Broxton-T */
> { PCI_DEVICE(0x8086, 0x1a98),
> .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_BROXTON },
> + /* Gemini-Lake */
> + { PCI_DEVICE(0x8086, 0x3198),
> + .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_BROXTON },
> /* Haswell */
> { PCI_DEVICE(0x8086, 0x0a0c),
> .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL },
> --
> 1.9.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda - Add Geminilake PCI ID
2017-02-25 7:29 ` Takashi Iwai
@ 2017-02-25 7:36 ` Takashi Iwai
2017-02-27 15:44 ` Vinod Koul
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2017-02-25 7:36 UTC (permalink / raw)
To: Vinod Koul; +Cc: liam.r.girdwood, patches.audio, alsa-devel, broonie
On Sat, 25 Feb 2017 08:29:57 +0100,
Takashi Iwai wrote:
>
> On Fri, 24 Feb 2017 23:42:40 +0100,
> Vinod Koul wrote:
> >
> > Geminilake is another Intel part, so need to add PCI ID for it.
> >
> > Signed-off-by: Vinod Koul <vinod.koul@intel.com>
>
> Applied, thanks.
BTW, the GLK HDMI codec ID needs update, too, no?
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda - Add Geminilake PCI ID
2017-02-25 7:36 ` Takashi Iwai
@ 2017-02-27 15:44 ` Vinod Koul
0 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2017-02-27 15:44 UTC (permalink / raw)
To: Takashi Iwai; +Cc: liam.r.girdwood, patches.audio, alsa-devel, broonie
On Sat, Feb 25, 2017 at 08:36:08AM +0100, Takashi Iwai wrote:
> On Sat, 25 Feb 2017 08:29:57 +0100,
> Takashi Iwai wrote:
> >
> > On Fri, 24 Feb 2017 23:42:40 +0100,
> > Vinod Koul wrote:
> > >
> > > Geminilake is another Intel part, so need to add PCI ID for it.
> > >
> > > Signed-off-by: Vinod Koul <vinod.koul@intel.com>
> >
> > Applied, thanks.
>
> BTW, the GLK HDMI codec ID needs update, too, no?
Oh yes it does :) Will send that out as well.
--
~Vinod
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-02-27 15:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-24 22:42 [PATCH] ALSA: hda - Add Geminilake PCI ID Vinod Koul
2017-02-25 7:29 ` Takashi Iwai
2017-02-25 7:36 ` Takashi Iwai
2017-02-27 15:44 ` Vinod Koul
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).