From: Julia Lawall <julia@xxxxxxx>
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@xxxxxxx>
---
drivers/net/atl1/atl1_main.c | 3 ---
1 file changed, 3 deletions(-)