diff options
| author | Al Viro <viro@ftp.linux.org.uk> | 2006-09-22 20:28:17 -0400 |
|---|---|---|
| committer | Jeff Garzik <jeff@garzik.org> | 2006-09-25 20:08:10 -0400 |
| commit | ee705dba75c2f7daae5403ad4599b6738e2da7a0 (patch) | |
| tree | 9e0dfdfee96d35a6e25c7d0c937b1284530f20d6 | |
| parent | 8a8e447b2aa1f9139d0bfc94a2a3426be9c8d40a (diff) | |
[PATCH] 64bit bugs in s2io
le32_to_cpu() on 64bit values
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
| -rw-r--r-- | drivers/net/s2io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index f5dbeb27b6f0..c50f4bf34202 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
| @@ -4303,11 +4303,11 @@ static struct net_device_stats *s2io_get_stats(struct net_device *dev) | |||
| 4303 | sp->stats.tx_errors = | 4303 | sp->stats.tx_errors = |
| 4304 | le32_to_cpu(mac_control->stats_info->tmac_any_err_frms); | 4304 | le32_to_cpu(mac_control->stats_info->tmac_any_err_frms); |
| 4305 | sp->stats.rx_errors = | 4305 | sp->stats.rx_errors = |
| 4306 | le32_to_cpu(mac_control->stats_info->rmac_drop_frms); | 4306 | le64_to_cpu(mac_control->stats_info->rmac_drop_frms); |
| 4307 | sp->stats.multicast = | 4307 | sp->stats.multicast = |
| 4308 | le32_to_cpu(mac_control->stats_info->rmac_vld_mcst_frms); | 4308 | le32_to_cpu(mac_control->stats_info->rmac_vld_mcst_frms); |
| 4309 | sp->stats.rx_length_errors = | 4309 | sp->stats.rx_length_errors = |
| 4310 | le32_to_cpu(mac_control->stats_info->rmac_long_frms); | 4310 | le64_to_cpu(mac_control->stats_info->rmac_long_frms); |
| 4311 | 4311 | ||
| 4312 | return (&sp->stats); | 4312 | return (&sp->stats); |
| 4313 | } | 4313 | } |
