svn commit: r226582 - stable/9/sys/dev/tws

Xin LI delphij at FreeBSD.org
Thu Oct 20 20:33:32 UTC 2011


Author: delphij
Date: Thu Oct 20 20:33:31 2011
New Revision: 226582
URL: http://svn.freebsd.org/changeset/base/226582

Log:
  MFC r226476:
  
  Return BUS_PROBE_DEFAULT instead of 0 (BUS_PROBE_SPECIFIC), allowing
  vendor provided driver to override in kernel driver.
  
  Approved by: re (kib)

Modified:
  stable/9/sys/dev/tws/tws.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/dev/tws/tws.c
==============================================================================
--- stable/9/sys/dev/tws/tws.c	Thu Oct 20 20:31:09 2011	(r226581)
+++ stable/9/sys/dev/tws/tws.c	Thu Oct 20 20:33:31 2011	(r226582)
@@ -172,7 +172,7 @@ tws_probe(device_t dev)
             first_ctlr = 0;
         }
 
-        return(0);
+        return(BUS_PROBE_DEFAULT);
     }
     return (ENXIO);
 }


More information about the svn-src-stable-9 mailing list