diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-10-11 22:48:04 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-12 01:17:18 -0400 |
commit | df3fe1f318b226453b8dc48622c2b6eb78d75dbb (patch) | |
tree | 1014feeab363100e02a377a1d4b36cc4a5a422aa /drivers/net/sky2.c | |
parent | ff35164e72648e0bf0b10ec4410c195e8607e88b (diff) |
[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/net/sky2.c')
-rw-r--r-- | drivers/net/sky2.c | 4 |
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[] = { | |||
296 | 296 | ||
297 | /* flow control to advertise bits when using 1000BaseX */ | 297 | /* flow control to advertise bits when using 1000BaseX */ |
298 | static const u16 fiber_fc_adv[] = { | 298 | static const u16 fiber_fc_adv[] = { |
299 | [FC_BOTH] = PHY_M_P_BOTH_MD_X, | 299 | [FC_NONE] = PHY_M_P_NO_PAUSE_X, |
300 | [FC_TX] = PHY_M_P_ASYM_MD_X, | 300 | [FC_TX] = PHY_M_P_ASYM_MD_X, |
301 | [FC_RX] = PHY_M_P_SYM_MD_X, | 301 | [FC_RX] = PHY_M_P_SYM_MD_X, |
302 | [FC_NONE] = PHY_M_P_NO_PAUSE_X, | 302 | [FC_BOTH] = PHY_M_P_BOTH_MD_X, |
303 | }; | 303 | }; |
304 | 304 | ||
305 | /* flow control to GMA disable bits */ | 305 | /* flow control to GMA disable bits */ |