Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Jun 2008 06:07:13 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/dev/cs if_cs.c
Message-ID:  <200806040607.m5467TdL013296@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200806040607.m5467TdL013296>