diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2009-02-11 18:16:46 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:53:28 -0700 |
commit | c9a312f1c1aeee20a1b6637cb6454890d35371f7 (patch) | |
tree | 89c003814bc261a1bcb095bb8cfcdb7a54feeb60 /drivers | |
parent | e68f2849c14bc64c728b1f35d67887a093c059c6 (diff) |
Staging: et131x: list usage cleanup
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/et131x/et1310_rx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/et131x/et1310_rx.c b/drivers/staging/et131x/et1310_rx.c index ec98da5da5b..8dc559a77ad 100644 --- a/drivers/staging/et131x/et1310_rx.c +++ b/drivers/staging/et131x/et1310_rx.c @@ -1203,8 +1203,7 @@ void et131x_reset_recv(struct et131x_adapter *pAdapter) 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); |