diff options
author | David Decotigny <decot@google.com> | 2011-04-27 14:32:40 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-29 17:03:01 -0400 |
commit | 707394972093e2056e1e8cc39be19cf9bcb3e7b3 (patch) | |
tree | f6dc95219bca6895adf304b79241e9d60561f8f5 /drivers/net/tulip | |
parent | 25db0338813a8915457636b1f6abe6a28fa73f8d (diff) |
ethtool: cosmetic: Use ethtool ethtool_cmd_speed API
This updates the network drivers so that they don't access the
ethtool_cmd::speed field directly, but use ethtool_cmd_speed()
instead.
For most of the drivers, these changes are purely cosmetic and don't
fix any problem, such as for those 1GbE/10GbE drivers that indirectly
call their own ethtool get_settings()/mii_ethtool_gset(). The changes
are meant to enforce code consistency and provide robustness with
future larger throughputs, at the expense of a few CPU cycles for each
ethtool operation.
All drivers compiled with make allyesconfig ion x86_64 have been
updated.
Tested: make allyesconfig on x86_64 + e1000e/bnx2x work
Signed-off-by: David Decotigny <decot@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tulip')
-rw-r--r-- | drivers/net/tulip/de2104x.c | 6 | ||||
-rw-r--r-- | drivers/net/tulip/uli526x.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/tulip/de2104x.c b/drivers/net/tulip/de2104x.c index f8d26bf9b2c4..ab78e1d58cb6 100644 --- a/drivers/net/tulip/de2104x.c +++ b/drivers/net/tulip/de2104x.c | |||
@@ -1518,15 +1518,15 @@ static int __de_get_settings(struct de_private *de, struct ethtool_cmd *ecmd) | |||
1518 | switch (de->media_type) { | 1518 | switch (de->media_type) { |
1519 | case DE_MEDIA_AUI: | 1519 | case DE_MEDIA_AUI: |
1520 | ecmd->port = PORT_AUI; | 1520 | ecmd->port = PORT_AUI; |
1521 | ecmd->speed = 5; | 1521 | ethtool_cmd_speed_set(ecmd, 5); |
1522 | break; | 1522 | break; |
1523 | case DE_MEDIA_BNC: | 1523 | case DE_MEDIA_BNC: |
1524 | ecmd->port = PORT_BNC; | 1524 | ecmd->port = PORT_BNC; |
1525 | ecmd->speed = 2; | 1525 | ethtool_cmd_speed_set(ecmd, 2); |
1526 | break; | 1526 | break; |
1527 | default: | 1527 | default: |
1528 | ecmd->port = PORT_TP; | 1528 | ecmd->port = PORT_TP; |
1529 | ecmd->speed = SPEED_10; | 1529 | ethtool_cmd_speed_set(ecmd, SPEED_10); |
1530 | break; | 1530 | break; |
1531 | } | 1531 | } |
1532 | 1532 | ||
diff --git a/drivers/net/tulip/uli526x.c b/drivers/net/tulip/uli526x.c index 74217dbf0143..a4375c406b5f 100644 --- a/drivers/net/tulip/uli526x.c +++ b/drivers/net/tulip/uli526x.c | |||
@@ -945,12 +945,12 @@ ULi_ethtool_gset(struct uli526x_board_info *db, struct ethtool_cmd *ecmd) | |||
945 | 945 | ||
946 | ecmd->transceiver = XCVR_EXTERNAL; | 946 | ecmd->transceiver = XCVR_EXTERNAL; |
947 | 947 | ||
948 | ecmd->speed = 10; | 948 | ethtool_cmd_speed_set(ecmd, SPEED_10); |
949 | ecmd->duplex = DUPLEX_HALF; | 949 | ecmd->duplex = DUPLEX_HALF; |
950 | 950 | ||
951 | if(db->op_mode==ULI526X_100MHF || db->op_mode==ULI526X_100MFD) | 951 | if(db->op_mode==ULI526X_100MHF || db->op_mode==ULI526X_100MFD) |
952 | { | 952 | { |
953 | ecmd->speed = 100; | 953 | ethtool_cmd_speed_set(ecmd, SPEED_100); |
954 | } | 954 | } |
955 | if(db->op_mode==ULI526X_10MFD || db->op_mode==ULI526X_100MFD) | 955 | if(db->op_mode==ULI526X_10MFD || db->op_mode==ULI526X_100MFD) |
956 | { | 956 | { |
@@ -958,7 +958,7 @@ ULi_ethtool_gset(struct uli526x_board_info *db, struct ethtool_cmd *ecmd) | |||
958 | } | 958 | } |
959 | if(db->link_failed) | 959 | if(db->link_failed) |
960 | { | 960 | { |
961 | ecmd->speed = -1; | 961 | ethtool_cmd_speed_set(ecmd, -1); |
962 | ecmd->duplex = -1; | 962 | ecmd->duplex = -1; |
963 | } | 963 | } |
964 | 964 | ||