aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/via-velocity.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c
index 3e94c8fff9e2..bcbf2fa9b94a 100644
--- a/drivers/net/via-velocity.c
+++ b/drivers/net/via-velocity.c
@@ -1527,12 +1527,8 @@ static int velocity_rx_copy(struct sk_buff **rx_skb, int pkt_size,
1527static inline void velocity_iph_realign(struct velocity_info *vptr, 1527static inline void velocity_iph_realign(struct velocity_info *vptr,
1528 struct sk_buff *skb, int pkt_size) 1528 struct sk_buff *skb, int pkt_size)
1529{ 1529{
1530 /* FIXME - memmove ? */
1531 if (vptr->flags & VELOCITY_FLAGS_IP_ALIGN) { 1530 if (vptr->flags & VELOCITY_FLAGS_IP_ALIGN) {
1532 int i; 1531 memmove(skb->data + 2, skb->data, pkt_size);
1533
1534 for (i = pkt_size; i >= 0; i--)
1535 *(skb->data + i + 2) = *(skb->data + i);
1536 skb_reserve(skb, 2); 1532 skb_reserve(skb, 2);
1537 } 1533 }
1538} 1534}