n_gsm: Drop unneeded cast on netdev_priv
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 29 Mar 2015 12:54:13 +0000 (14:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Apr 2015 12:43:48 +0000 (14:43 +0200)
commit5dbc32a88f1e73f244e6134fc119dd4d60a398c0
tree6480597fec626637d8951ad7b6f62adf28dd744c
parentf0e381158a95a63a283be4cde64795d37e32134b
n_gsm: Drop unneeded cast on netdev_priv

The result of netdev_priv is already implicitly cast to the type of the
left side of the assignment.

The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
type T;
T *x;
@@

x =
- (T *)
  netdev_priv(...)
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/n_gsm.c