mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 09:02:06 +00:00
r8169: drop rtl_generic_op
Only two places are left where rtl_generic_op() is used, so we can inline it and simplify the code a little. This change also avoids the overhead of unlocking/locking in case the respective operation isn't set. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b2d43e6ecf
commit
eda40b8cbe
1 changed files with 10 additions and 13 deletions
|
@ -4764,13 +4764,6 @@ static void r8168_pll_power_up(struct rtl8169_private *tp)
|
||||||
r8168_phy_power_up(tp);
|
r8168_phy_power_up(tp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rtl_generic_op(struct rtl8169_private *tp,
|
|
||||||
void (*op)(struct rtl8169_private *))
|
|
||||||
{
|
|
||||||
if (op)
|
|
||||||
op(tp);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void rtl_pll_power_down(struct rtl8169_private *tp)
|
static void rtl_pll_power_down(struct rtl8169_private *tp)
|
||||||
{
|
{
|
||||||
switch (tp->mac_version) {
|
switch (tp->mac_version) {
|
||||||
|
@ -4821,16 +4814,20 @@ static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
|
||||||
|
|
||||||
static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
|
static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
|
||||||
{
|
{
|
||||||
RTL_W8(tp, Cfg9346, Cfg9346_Unlock);
|
if (tp->jumbo_ops.enable) {
|
||||||
rtl_generic_op(tp, tp->jumbo_ops.enable);
|
RTL_W8(tp, Cfg9346, Cfg9346_Unlock);
|
||||||
RTL_W8(tp, Cfg9346, Cfg9346_Lock);
|
tp->jumbo_ops.enable(tp);
|
||||||
|
RTL_W8(tp, Cfg9346, Cfg9346_Lock);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
|
static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
|
||||||
{
|
{
|
||||||
RTL_W8(tp, Cfg9346, Cfg9346_Unlock);
|
if (tp->jumbo_ops.disable) {
|
||||||
rtl_generic_op(tp, tp->jumbo_ops.disable);
|
RTL_W8(tp, Cfg9346, Cfg9346_Unlock);
|
||||||
RTL_W8(tp, Cfg9346, Cfg9346_Lock);
|
tp->jumbo_ops.disable(tp);
|
||||||
|
RTL_W8(tp, Cfg9346, Cfg9346_Lock);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
|
static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue