Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f42e86d9 authored by Yong Wang's avatar Yong Wang Committed by Jesse Barnes
Browse files

PCI/DMAR: don't assume presence of RMRRs



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: default avatarYong 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: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent e4268aad
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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;
}