Commit 2f1b3818 authored by Jason Gaston's avatar Jason Gaston Committed by Linus Torvalds

[PATCH] hda_intel: Intel ESB2 support

This adds the Intel ESB2 HD Audio DID to the hda_intel.c audio driver.
Signed-off-by: default avatarJason Gaston <Jason.d.gaston@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4d24a439
...@@ -64,7 +64,8 @@ MODULE_PARM_DESC(model, "Use the given board model."); ...@@ -64,7 +64,8 @@ MODULE_PARM_DESC(model, "Use the given board model.");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_SUPPORTED_DEVICE("{{Intel, ICH6}," MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
"{Intel, ICH6M}," "{Intel, ICH6M},"
"{Intel, ICH7}}"); "{Intel, ICH7},"
"{Intel, ESB2}}");
MODULE_DESCRIPTION("Intel HDA driver"); MODULE_DESCRIPTION("Intel HDA driver");
#define SFX "hda-intel: " #define SFX "hda-intel: "
...@@ -1422,6 +1423,7 @@ static void __devexit azx_remove(struct pci_dev *pci) ...@@ -1422,6 +1423,7 @@ static void __devexit azx_remove(struct pci_dev *pci)
static struct pci_device_id azx_ids[] = { static struct pci_device_id azx_ids[] = {
{ 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH6 */ { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH6 */
{ 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH7 */ { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ICH7 */
{ 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* ESB2 */
{ 0, } { 0, }
}; };
MODULE_DEVICE_TABLE(pci, azx_ids); MODULE_DEVICE_TABLE(pci, azx_ids);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment