Staging: go7007: Eliminate useless code
authorJulia Lawall <julia@diku.dk>
Sat, 16 Jan 2010 15:59:22 +0000 (16:59 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 4 Mar 2010 00:42:45 +0000 (16:42 -0800)
commitf51f90300010937bc9a2455cef88366448a6e718
tree0b019860fa0c9501e588203456d08cf669c65af9
parent79a22d5c264f5ddfc8573aa7eb234fe62dd1ee32
Staging: go7007: Eliminate useless code

The variable s is initialized twice to the same (side effect-free)
expression.  Drop one initialization.

A simplified version of the semantic match that finds this problem is:
(http://coccinelle.lip6.fr/)

// <smpl>
@forall@
idexpression *x;
identifier f!=ERR_PTR;
@@

x = f(...)
... when != x
(
x = f(...,<+...x...+>,...)
|
* x = f(...)
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/go7007/s2250-loader.c