aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/quirks.c2
-rw-r--r--drivers/pci/xen-pcifront.c5
2 files changed, 3 insertions, 4 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index dca58b9ba8c6..7285145ac1c9 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -2788,7 +2788,7 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_RICOH, PCI_DEVICE_ID_RICOH_R5CE823, ricoh_
2788DECLARE_PCI_FIXUP_RESUME_EARLY(PCI_VENDOR_ID_RICOH, PCI_DEVICE_ID_RICOH_R5CE823, ricoh_mmc_fixup_r5c832); 2788DECLARE_PCI_FIXUP_RESUME_EARLY(PCI_VENDOR_ID_RICOH, PCI_DEVICE_ID_RICOH_R5CE823, ricoh_mmc_fixup_r5c832);
2789#endif /*CONFIG_MMC_RICOH_MMC*/ 2789#endif /*CONFIG_MMC_RICOH_MMC*/
2790 2790
2791#if defined(CONFIG_DMAR) || defined(CONFIG_INTR_REMAP) 2791#ifdef CONFIG_DMAR_TABLE
2792#define VTUNCERRMSK_REG 0x1ac 2792#define VTUNCERRMSK_REG 0x1ac
2793#define VTD_MSK_SPEC_ERRORS (1 << 31) 2793#define VTD_MSK_SPEC_ERRORS (1 << 31)
2794/* 2794/*
diff --git a/drivers/pci/xen-pcifront.c b/drivers/pci/xen-pcifront.c
index 6fa215a38615..90832a955991 100644
--- a/drivers/pci/xen-pcifront.c
+++ b/drivers/pci/xen-pcifront.c
@@ -400,9 +400,8 @@ static int pcifront_claim_resource(struct pci_dev *dev, void *data)
400 dev_info(&pdev->xdev->dev, "claiming resource %s/%d\n", 400 dev_info(&pdev->xdev->dev, "claiming resource %s/%d\n",
401 pci_name(dev), i); 401 pci_name(dev), i);
402 if (pci_claim_resource(dev, i)) { 402 if (pci_claim_resource(dev, i)) {
403 dev_err(&pdev->xdev->dev, "Could not claim " 403 dev_err(&pdev->xdev->dev, "Could not claim resource %s/%d! "
404 "resource %s/%d! Device offline. Try " 404 "Device offline. Try using e820_host=1 in the guest config.\n",
405 "giving less than 4GB to domain.\n",
406 pci_name(dev), i); 405 pci_name(dev), i);
407 } 406 }
408 } 407 }