diff options
author | 2005-11-06 01:41:02 +0000 | |
---|---|---|
committer | 2005-11-06 01:41:02 +0000 | |
commit | 1de857c2f06e8dda4a486f0772f1dd67dfb3902e (patch) | |
tree | 477719c2664076ba7d440c4bce43d6cf0c303f18 | |
parent | Instead of always forcing General MIDI 1 mode make it an option (diff) | |
download | wireguard-openbsd-1de857c2f06e8dda4a486f0772f1dd67dfb3902e.tar.xz wireguard-openbsd-1de857c2f06e8dda4a486f0772f1dd67dfb3902e.zip |
add a comment explaining what the 5401 DSP code does.
-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 }, |