aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/intel-iommu.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c
index fa9e41626bfc..f3f686581a90 100644
--- a/drivers/pci/intel-iommu.c
+++ b/drivers/pci/intel-iommu.c
@@ -61,7 +61,7 @@
61/* global iommu list, set NULL for ignored DMAR units */ 61/* global iommu list, set NULL for ignored DMAR units */
62static struct intel_iommu **g_iommus; 62static struct intel_iommu **g_iommus;
63 63
64static int rwbf_quirk = 0; 64static int rwbf_quirk;
65 65
66/* 66/*
67 * 0: Present 67 * 0: Present
@@ -3142,8 +3142,10 @@ static struct iommu_ops intel_iommu_ops = {
3142 3142
3143static void __devinit quirk_iommu_rwbf(struct pci_dev *dev) 3143static void __devinit quirk_iommu_rwbf(struct pci_dev *dev)
3144{ 3144{
3145 /* Mobile 4 Series Chipset neglects to set RWBF capability, 3145 /*
3146 but needs it */ 3146 * Mobile 4 Series Chipset neglects to set RWBF capability,
3147 * but needs it:
3148 */
3147 printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n"); 3149 printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n");
3148 rwbf_quirk = 1; 3150 rwbf_quirk = 1;
3149} 3151}