aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@linux-foundation.org>2007-10-11 19:48:04 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-11 22:17:18 -0700
commitdf3fe1f318b226453b8dc48622c2b6eb78d75dbb (patch)
tree1014feeab363100e02a377a1d4b36cc4a5a422aa /drivers
parent[SKY2]: fix power settings on Yukon XL (diff)
downloadlinux-dev-df3fe1f318b226453b8dc48622c2b6eb78d75dbb.tar.xz
linux-dev-df3fe1f318b226453b8dc48622c2b6eb78d75dbb.zip
[SKY2]: fiber advertise bits initialization (trivial)
Put initialization in sequential order (same as other constants). Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/sky2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c
index c9ee8a2c24b5..55cda58bf59f 100644
--- a/drivers/net/sky2.c
+++ b/drivers/net/sky2.c
@@ -296,10 +296,10 @@ static const u16 copper_fc_adv[] = {
/* flow control to advertise bits when using 1000BaseX */
static const u16 fiber_fc_adv[] = {
- [FC_BOTH] = PHY_M_P_BOTH_MD_X,
+ [FC_NONE] = PHY_M_P_NO_PAUSE_X,
[FC_TX] = PHY_M_P_ASYM_MD_X,
[FC_RX] = PHY_M_P_SYM_MD_X,
- [FC_NONE] = PHY_M_P_NO_PAUSE_X,
+ [FC_BOTH] = PHY_M_P_BOTH_MD_X,
};
/* flow control to GMA disable bits */