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

Commit d28d4870 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Jeff Garzik
Browse files

[PATCH] sky2: ethtool rx_coalesce settings fix



This fixes setting rx_coalesce_usecs_irq via ethtool in sky2.
The write was directed to the wrong register.

Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
Signed-off-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 2d42d21f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2847,7 +2847,7 @@ static int sky2_set_coalesce(struct net_device *dev,
	if (ecmd->rx_coalesce_usecs_irq == 0)
		sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_STOP);
	else {
		sky2_write32(hw, STAT_TX_TIMER_INI,
		sky2_write32(hw, STAT_ISR_TIMER_INI,
			     sky2_us2clk(hw, ecmd->rx_coalesce_usecs_irq));
		sky2_write8(hw, STAT_ISR_TIMER_CTRL, TIM_START);
	}