diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2016-10-14 20:46:08 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-11-07 20:15:44 +0100 |
commit | 463f46eb614ee047870a423ce90f78e4516ce012 (patch) | |
tree | 4af509edec74f09b1e61e6c5fe52d7873248842a /src/northbridge/amd/pi | |
parent | 50198c117839ee01c331a827dc57b6293c989f34 (diff) |
pci_ids.h: Correct recent AMD ID names
Adjust the names to match AMD's convention for family and model.
This patch is relevant for:
Trinity & Richland: Family 15h Models 00h-0Fh
Carrizo: Family 15h Models 60h-6Fh
Mullins & Steppe Eagle: Family 16h Models 30h-3Fh
Change-Id: I613b84ed438fb70269d789c9901f1928b5500757
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/17169
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/northbridge/amd/pi')
-rw-r--r-- | src/northbridge/amd/pi/00660F01/northbridge.c | 2 | ||||
-rw-r--r-- | src/northbridge/amd/pi/00730F01/northbridge.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/amd/pi/00660F01/northbridge.c b/src/northbridge/amd/pi/00660F01/northbridge.c index c44641965a..115d760706 100644 --- a/src/northbridge/amd/pi/00660F01/northbridge.c +++ b/src/northbridge/amd/pi/00660F01/northbridge.c @@ -581,7 +581,7 @@ static struct device_operations northbridge_operations = { static const struct pci_driver family15_northbridge __pci_driver = { .ops = &northbridge_operations, .vendor = PCI_VENDOR_ID_AMD, - .device = PCI_DEVICE_ID_AMD_15H_MODEL_006F_NB_HT, + .device = PCI_DEVICE_ID_AMD_15H_MODEL_606F_NB_HT, }; static void fam15_finalize(void *chip_info) diff --git a/src/northbridge/amd/pi/00730F01/northbridge.c b/src/northbridge/amd/pi/00730F01/northbridge.c index e8bc425d6a..5b837218ce 100644 --- a/src/northbridge/amd/pi/00730F01/northbridge.c +++ b/src/northbridge/amd/pi/00730F01/northbridge.c @@ -590,7 +590,7 @@ static struct device_operations northbridge_operations = { static const struct pci_driver family16_northbridge __pci_driver = { .ops = &northbridge_operations, .vendor = PCI_VENDOR_ID_AMD, - .device = PCI_DEVICE_ID_AMD_16H_MODEL_003F_NB_HT, + .device = PCI_DEVICE_ID_AMD_16H_MODEL_303F_NB_HT, }; static const struct pci_driver family10_northbridge __pci_driver = { |