Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ee705dba authored by Al Viro's avatar Al Viro Committed by Jeff Garzik
Browse files

[PATCH] 64bit bugs in s2io



le32_to_cpu() on 64bit values

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 8a8e447b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4303,11 +4303,11 @@ static struct net_device_stats *s2io_get_stats(struct net_device *dev)
	sp->stats.tx_errors =
		le32_to_cpu(mac_control->stats_info->tmac_any_err_frms);
	sp->stats.rx_errors =
		le32_to_cpu(mac_control->stats_info->rmac_drop_frms);
		le64_to_cpu(mac_control->stats_info->rmac_drop_frms);
	sp->stats.multicast =
		le32_to_cpu(mac_control->stats_info->rmac_vld_mcst_frms);
	sp->stats.rx_length_errors =
		le32_to_cpu(mac_control->stats_info->rmac_long_frms);
		le64_to_cpu(mac_control->stats_info->rmac_long_frms);

	return (&sp->stats);
}