]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
PCI/DMAR: don't assume presence of RMRRs
authorYong Wang <yong.y.wang@linux.intel.com>
Tue, 22 Jul 2008 21:14:18 +0000 (14:14 -0700)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Tue, 22 Jul 2008 21:14:18 +0000 (14:14 -0700)
RMRRs do not necessarily have to be present on all VT-d capable platforms.
The printk is just informational and does not need to be followed by an error
return.

Signed-off-by: Yong Y Wang <yong.y.wang@intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: mark gross <mgross@linux.intel.com>
Cc: Keshavamurthy, Anil S <anil.s.keshavamurthy@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/pci/dmar.c

index f941f609dbf399edfd389b4ace85a07816a5e633..8bf86ae2333fc963207d2b14d2702c96a9532bc6 100644 (file)
@@ -317,10 +317,8 @@ int __init dmar_table_init(void)
                return -ENODEV;
        }
 
-       if (list_empty(&dmar_rmrr_units)) {
+       if (list_empty(&dmar_rmrr_units))
                printk(KERN_INFO PREFIX "No RMRR found\n");
-               return -ENODEV;
-       }
 
        return 0;
 }