summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Corrick <tristan@corrick.kiwi>2018-10-31 02:22:13 +1300
committerNico Huber <nico.h@gmx.de>2018-11-01 22:21:19 +0000
commit3ffbc7c8e2f56b9fe9055396433561b3f05340aa (patch)
tree5cc35dcd8c040f66b6f0dafe59fdb25854449d60 /src
parent4817012e93131db7159050984b4a2a48e54f8989 (diff)
downloadcoreboot-3ffbc7c8e2f56b9fe9055396433561b3f05340aa.tar.xz
nb/intel/haswell: Add a PCI ID for a Mini-HD audio controller
The PCI ID was taken from the output of `lspci` on an ASRock H81M-HDS. Change-Id: I3679d1ab0ae08726bff04c5985d6d93437b2fb81 Signed-off-by: Tristan Corrick <tristan@corrick.kiwi> Reviewed-on: https://review.coreboot.org/29379 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src')
-rw-r--r--src/northbridge/intel/haswell/minihd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/haswell/minihd.c b/src/northbridge/intel/haswell/minihd.c
index 52710bb019..4f7e201fe6 100644
--- a/src/northbridge/intel/haswell/minihd.c
+++ b/src/northbridge/intel/haswell/minihd.c
@@ -128,7 +128,7 @@ static struct device_operations minihd_ops = {
.ops_pci = &minihd_pci_ops,
};
-static const unsigned short pci_device_ids[] = { 0x0a0c, 0 };
+static const unsigned short pci_device_ids[] = { 0x0a0c, 0x0c0c, 0 };
static const struct pci_driver haswell_minihd __pci_driver = {
.ops = &minihd_ops,