]> git.baikalelectronics.ru Git - kernel.git/commit
ixgb: remove unused variable
authorJulia Lawall <julia@diku.dk>
Mon, 17 Mar 2008 17:12:27 +0000 (10:12 -0700)
committerJeff Garzik <jeff@garzik.org>
Wed, 26 Mar 2008 03:16:09 +0000 (23:16 -0400)
commitadd6d326ce8c9d40b055bde2a40a48747a6f4f65
tree9361d026a188a9024831ca99ee02d12ce30fa0c4
parenta7195377a8b48ed8148d20007a1e681b06d216b3
ixgb: remove unused variable

The variable num_group_tail_writes 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: Auke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/net/ixgb/ixgb_main.c