drivers/net/ethernet/tundra/tsi108_eth.c: delete double assignment
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sat, 25 Aug 2012 22:18:35 +0000 (22:18 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Aug 2012 17:08:37 +0000 (13:08 -0400)
Delete successive assignments to the same location.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
expression i;
@@

*i = ...;
 i = ...;
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found