Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jun 2001 13:51:18 -0700 (PDT)
From:      Bill Paul <wpaul@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/pci if_pcn.c
Message-ID:  <200106052051.f55KpIE35487@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
wpaul       2001/06/05 13:51:18 PDT

  Modified files:
    sys/pci              if_pcn.c 
  Log:
  Fix mindo:
  
  	PCN_BCR_CLRBIT(sc, PCN_BCR_MIICTL, PCN_MIICTL_DANAS);
  
  should be:
  
  	PCN_BCR_SETBIT(sc, PCN_BCR_MIICTL, PCN_MIICTL_DANAS);
  
  Turning this bit on is what disables MII autoneg, not turning it off.
  Without this, manually setting the media doesn't work.
  
  Noticed by: Jim Browne <jbrowne@jbrowne.com>
  
  Revision  Changes    Path
  1.21      +3 -3      src/sys/pci/if_pcn.c


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




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