mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 07:08:07 +00:00
e1000e: cleanup code duplication
The removed code block is duplicated in e1000e_write_itr() so use that instead. Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
3a3104e7d0
commit
e3d14b08e8
1 changed files with 1 additions and 5 deletions
|
@ -2405,7 +2405,6 @@ static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
|
||||||
|
|
||||||
static void e1000_set_itr(struct e1000_adapter *adapter)
|
static void e1000_set_itr(struct e1000_adapter *adapter)
|
||||||
{
|
{
|
||||||
struct e1000_hw *hw = &adapter->hw;
|
|
||||||
u16 current_itr;
|
u16 current_itr;
|
||||||
u32 new_itr = adapter->itr;
|
u32 new_itr = adapter->itr;
|
||||||
|
|
||||||
|
@ -2468,10 +2467,7 @@ set_itr_now:
|
||||||
if (adapter->msix_entries)
|
if (adapter->msix_entries)
|
||||||
adapter->rx_ring->set_itr = 1;
|
adapter->rx_ring->set_itr = 1;
|
||||||
else
|
else
|
||||||
if (new_itr)
|
e1000e_write_itr(adapter, new_itr);
|
||||||
ew32(ITR, 1000000000 / (new_itr * 256));
|
|
||||||
else
|
|
||||||
ew32(ITR, 0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue