commit | e8c75e2c1c6965d071d50620278df78f65cfe082 | [log] [tgz] |
---|---|---|
author | Julia Lawall <Julia.Lawall@lip6.fr> | Sat Aug 25 22:18:35 2012 +0000 |
committer | David S. Miller <davem@davemloft.net> | Thu Aug 30 13:08:37 2012 -0400 |
tree | 4e81e11e8a0cb223958d58a32288ad1967d93034 | |
parent | 3f0a1b58ae1fb72dee348564d03f42cca2338ab8 [diff] |
drivers/net/ethernet/tundra/tsi108_eth.c: delete double assignment 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>