svn commit: r226589 - stable/8/sys/dev/tws

Xin LI delphij at FreeBSD.org
Thu Oct 20 21:49:26 UTC 2011


Author: delphij
Date: Thu Oct 20 21:49:26 2011
New Revision: 226589
URL: http://svn.freebsd.org/changeset/base/226589

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

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

Modified: stable/8/sys/dev/tws/tws.c
==============================================================================
--- stable/8/sys/dev/tws/tws.c	Thu Oct 20 21:48:09 2011	(r226588)
+++ stable/8/sys/dev/tws/tws.c	Thu Oct 20 21:49:26 2011	(r226589)
@@ -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-all mailing list