commit | f2543790875b088e2a58aa12ee1ac20a75d6126d | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Tue Oct 26 12:25:43 2010 +0200 |
committer | Jeff Garzik <jgarzik@redhat.com> | Fri Nov 12 17:10:55 2010 -0500 |
tree | aa007a260b311f2e8f8c815bf9981622a708fecb | |
parent | f60215a1302f03ad435f8365c0dd85bdb022cac3 [diff] |
drivers/ata/pata_octeon_cf.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@diku.dk> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>