diff options
author | Furquan Shaikh <furquan@google.com> | 2020-04-27 17:53:18 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2020-04-29 08:38:15 +0000 |
commit | f9c4a8dd3f784e050520a78c9a2c49bfd802fa11 (patch) | |
tree | 82d2d19f9ed33a2afda8c6384ca3e5ce6fc8449d | |
parent | 10757897c0714d3c7c1f4b5d67b64a7e92a5cc9e (diff) | |
download | coreboot-f9c4a8dd3f784e050520a78c9a2c49bfd802fa11.tar.xz |
soc/amd/common/block/hda: Drop PCI_DEVICE_ID_AMD_FAM17H_HDA0
PCI device PCI_DEVICE_ID_AMD_FAM17H_HDA0 does not really use the same
vendor ID as PCI_VENDOR_ID_AMD. Thus, drop this device from the list
of pci_device_ids[] that are supported by the common hda driver.
BUG=b:153858769
Change-Id: If41dc7179e1e5b476878ee24c8a355b1cde762eb
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40778
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/amd/common/block/hda/hda.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/hda/hda.c b/src/soc/amd/common/block/hda/hda.c index e4f86df192..1f41478108 100644 --- a/src/soc/amd/common/block/hda/hda.c +++ b/src/soc/amd/common/block/hda/hda.c @@ -10,7 +10,6 @@ static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_AMD_SB900_HDA, PCI_DEVICE_ID_AMD_CZ_HDA, - PCI_DEVICE_ID_AMD_FAM17H_HDA0, PCI_DEVICE_ID_AMD_FAM17H_HDA1, 0 }; |