commit | b97ef8757b6752397ed1dd24bfc9083cf4dc49b4 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Sat Mar 15 17:04:39 2008 +0100 |
committer | Jeff Garzik <jeff@garzik.org> | Mon Mar 17 07:56:42 2008 -0400 |
tree | 5e25e0cd105b3c310e536c272ca23dce1af7b997 | |
parent | 9ebfd4929dc86d33cb68823714802cf226a38d42 [diff] |
drivers/net/ipg.c: remove unused variable The variable gig 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> Signed-off-by: Jeff Garzik <jeff@garzik.org>