diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-06 01:41:03 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-06 01:41:03 +0000 |
commit | bf67c09f7633175f5bf1cf346eff5e890c170a3b (patch) | |
tree | d3f24762e0e87c02b8d0038563bce00c7360e643 /sys/dev/mii | |
parent | 860fa9089f1db13d479a696b549fa1b77ea26416 (diff) |
add a comment explaining what the 5401 DSP code does.
Diffstat (limited to 'sys/dev/mii')
-rw-r--r-- | sys/dev/mii/brgphy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c index 0c36913c2d6..c917ea8adf3 100644 --- a/sys/dev/mii/brgphy.c +++ b/sys/dev/mii/brgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: brgphy.c,v 1.36 2005/11/05 09:42:44 brad Exp $ */ +/* $OpenBSD: brgphy.c,v 1.37 2005/11/06 01:41:02 brad Exp $ */ /* * Copyright (c) 2000 @@ -476,6 +476,7 @@ struct bcm_dspcode { u_int16_t val; }; +/* Disable tap power management */ static const struct bcm_dspcode bcm5401_dspcode[] = { { BRGPHY_MII_AUXCTL, 0x0c20 }, { BRGPHY_MII_DSP_ADDR_REG, 0x0012 }, @@ -491,7 +492,7 @@ static const struct bcm_dspcode bcm5401_dspcode[] = { { 0, 0 }, }; -/* setting some undocumented voltage */ +/* Setting some undocumented voltage */ static const struct bcm_dspcode bcm5411_dspcode[] = { { 0x1c, 0x8c23 }, { 0x1c, 0x8ca3 }, |