Searched hist:179532 (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/sys/dev/cs/
H A Dif_cs.cdiff 179532 Wed Jun 04 04:22:23 MDT 2008 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...

Completed in 125 milliseconds