Commit 2ac1fa43 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by David S. Miller

r8169: inline rtl8169_mark_as_last_descriptor

rtl8169_mark_as_last_descriptor() has just one user, so inline it.
Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a5006777
...@@ -3939,11 +3939,6 @@ static void rtl8169_rx_clear(struct rtl8169_private *tp) ...@@ -3939,11 +3939,6 @@ static void rtl8169_rx_clear(struct rtl8169_private *tp)
} }
} }
static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
{
desc->opts1 |= cpu_to_le32(RingEnd);
}
static int rtl8169_rx_fill(struct rtl8169_private *tp) static int rtl8169_rx_fill(struct rtl8169_private *tp)
{ {
unsigned int i; unsigned int i;
...@@ -3959,7 +3954,8 @@ static int rtl8169_rx_fill(struct rtl8169_private *tp) ...@@ -3959,7 +3954,8 @@ static int rtl8169_rx_fill(struct rtl8169_private *tp)
tp->Rx_databuff[i] = data; tp->Rx_databuff[i] = data;
} }
rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1); /* mark as last descriptor in the ring */
tp->RxDescArray[NUM_RX_DESC - 1].opts1 |= cpu_to_le32(RingEnd);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment