Submitter | Warren Turkal |
---|---|
Date | 2010-09-01 20:41:37 |
Message ID | <1283373697-16398-5-git-send-email-wt@penguintechs.org> |
Download | mbox | patch |
Permalink | /patch/1848/ |
State | Accepted |
Commit | r5770 |
Headers | show |
Comments
Patch
diff --git a/util/inteltool/pcie.c b/util/inteltool/pcie.c index 0201342..2c0f6a4 100644 --- a/util/inteltool/pcie.c +++ b/util/inteltool/pcie.c @@ -114,6 +114,9 @@ int print_dmibar(struct pci_dev *nb) case PCI_DEVICE_ID_INTEL_82810E_MC: printf("This northbrigde does not have DMIBAR.\n"); return 1; + case PCI_DEVICE_ID_INTEL_X58: + dmibar_phys = pci_read_long(nb, 0x50) & 0xfffff000; + break; default: printf("Error: Dumping DMIBAR on this northbridge is not (yet) supported.\n"); return 1;
Signed-off-by: Warren Turkal <wt@penguintechs.org> --- util/inteltool/pcie.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)