imp 2008-06-04 06:07:29 UTC FreeBSD src repository
Modified files: sys/dev/cs if_cs.c Log: SVN rev 179532 on 2008-06-04 06:07:13Z by imp o Improve the probe code dealing with interrupts. o When forced to be 10baseT, don't require that the 10baseT interface have link to succeed. Still require it for IFM_AUTO, however, since it appears that there's no way to tell if a specific type of interface worked. I'm doing a web search for a datasheet now to see if there's anything obvious. o Minor incidental formatting nits, including collapsing code of the form if (foo) { bar(); } else { if (baz) bing(); } into: if (foo) { bar(); } else if (baz) { bing(); } to save an indentation level. o Remove stray reference to 3.x config file syntax. # I believe John's patches still apply after this... Revision Changes Path 1.47 +54 -83 src/sys/dev/cs/if_cs.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"