Trivial cleanup, list_del(); list_add_tail() is equivalent
to list_move_tail(). Semantic patch for coccinelle can be
found at www.cccmz.de/~snakebyte/list_move_tail.spatch
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
 
                pMpRfd = (PMP_RFD) list_entry(element, MP_RFD, list_node);
 
-               list_del(&pMpRfd->list_node);
-               list_add_tail(&pMpRfd->list_node, &pAdapter->RxRing.RecvList);
+               list_move_tail(&pMpRfd->list_node, &pAdapter->RxRing.RecvList);
        }
 
        DBG_LEAVE(et131x_dbginfo);