Attention is currently required from: Patrick Rudolph. Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60600 )
Change subject: nb/intel/{sandybridge,haswell}: Rename PCIe driver ......................................................................
nb/intel/{sandybridge,haswell}: Rename PCIe driver
Rename the PCIe driver from `pch_pcie` to `sa_pcie`, as the driver is for the System Agent's PCIe root ports, not for the PCH's root ports.
Change-Id: I019088fcaa7866d8002e6884c25e1acd1d149093 Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/northbridge/intel/haswell/pcie.c M src/northbridge/intel/sandybridge/pcie.c 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/00/60600/1
diff --git a/src/northbridge/intel/haswell/pcie.c b/src/northbridge/intel/haswell/pcie.c index 95c0240..b63101c 100644 --- a/src/northbridge/intel/haswell/pcie.c +++ b/src/northbridge/intel/haswell/pcie.c @@ -168,7 +168,7 @@ 0x0d01, 0x0d05, 0x0d09, /* Crystal Well */ 0 };
-static const struct pci_driver pch_pcie __pci_driver = { +static const struct pci_driver sa_pcie __pci_driver = { .ops = &device_ops, .vendor = PCI_VENDOR_ID_INTEL, .devices = pci_device_ids, diff --git a/src/northbridge/intel/sandybridge/pcie.c b/src/northbridge/intel/sandybridge/pcie.c index 36e9f26..6f7937d 100644 --- a/src/northbridge/intel/sandybridge/pcie.c +++ b/src/northbridge/intel/sandybridge/pcie.c @@ -63,7 +63,7 @@ 0, };
-static const struct pci_driver pch_pcie __pci_driver = { +static const struct pci_driver sa_pcie __pci_driver = { .ops = &device_ops, .vendor = PCI_VENDOR_ID_INTEL, .devices = pci_device_ids,