USB: serial: Eliminate useless code
authorJulia Lawall <julia@diku.dk>
Sat, 16 Jan 2010 15:59:51 +0000 (16:59 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 2 Mar 2010 22:54:34 +0000 (14:54 -0800)
commita45a1e07aa5e4d3dc952c264f87184c5ac8c0a62
treecd4113243e7a16574176b3c5543609ebea82340b
parentaa7907407adf1358ee39be0e98beaf4c129a78d6
USB: serial: Eliminate useless code

The variables priv and portdata are initialized twice to the same (side
effect-free) expressions.  Drop one initialization in each case.

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/usb/serial/cypress_m8.c
drivers/usb/serial/sierra.c