svn commit: r257511 - head/sys/x86/iommu

Konstantin Belousov kib at FreeBSD.org
Fri Nov 1 17:16:45 UTC 2013


Author: kib
Date: Fri Nov  1 17:16:44 2013
New Revision: 257511
URL: http://svnweb.freebsd.org/changeset/base/257511

Log:
  Return BUS_PROBE_NOWILDCARD from the DMAR probe method.
  
  Confirmed by:	nwhitehorn
  MFC after:	1 month

Modified:
  head/sys/x86/iommu/intel_drv.c

Modified: head/sys/x86/iommu/intel_drv.c
==============================================================================
--- head/sys/x86/iommu/intel_drv.c	Fri Nov  1 17:12:45 2013	(r257510)
+++ head/sys/x86/iommu/intel_drv.c	Fri Nov  1 17:16:44 2013	(r257511)
@@ -217,7 +217,7 @@ dmar_probe(device_t dev)
 	if (acpi_get_handle(dev) != NULL)
 		return (ENXIO);
 	device_set_desc(dev, "DMA remap");
-	return (0);
+	return (BUS_PROBE_NOWILDCARD);
 }
 
 static void


More information about the svn-src-head mailing list