cvs commit: src/sys/dev/cs if_cs.c
Warner Losh
imp at FreeBSD.org
Wed Jun 4 06:07:29 UTC 2008
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
More information about the cvs-src
mailing list