Author: delphij
Date: Mon Oct 17 19:21:42 2011
New Revision: 226476
URL: http://svn.freebsd.org/changeset/base/226476
Log:
Return BUS_PROBE_DEFAULT instead of 0 (BUS_PROBE_SPECIFIC), allowing
vendor provided driver to override in kernel driver.
MFC after: 3 days
Modified:
head/sys/dev/tws/tws.c
Modified: head/sys/dev/tws/tws.c
==============================================================================
--- head/sys/dev/tws/tws.c Mon Oct 17 18:30:18 2011 (r226475)
+++ head/sys/dev/tws/tws.c Mon Oct 17 19:21:42 2011 (r226476)
@@ -172,7 +172,7 @@ tws_probe(device_t dev)
first_ctlr = 0;
}
- return(0);
+ return(BUS_PROBE_DEFAULT);
}
return (ENXIO);
}
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"