commit | 16bb547e130bad47c16852f353f5501cf4b9b35a | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Sat Mar 15 17:05:02 2008 +0100 |
committer | Jeff Garzik <jeff@garzik.org> | Mon Mar 17 07:56:57 2008 -0400 |
tree | d9f560810cf450888c822ed0eb28a14ecdd7bec7 | |
parent | b97ef8757b6752397ed1dd24bfc9083cf4dc49b4 [diff] |
drivers/net/atl1/atl1_main.c: remove unused variable The variable update_rx is initialized but never used otherwise. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // <smpl> @@ type T; identifier i; constant C; @@ ( extern T i; | - T i; <+... when != i - i = C; ...+> ) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Acked-by: Jay Cliburn <jacliburn@bellsouth.net> Signed-off-by: Jeff Garzik <jeff@garzik.org>