commit | 5dbc32a88f1e73f244e6134fc119dd4d60a398c0 | [log] [tgz] |
---|---|---|
author | Julia Lawall <Julia.Lawall@lip6.fr> | Sun Mar 29 14:54:13 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Apr 10 14:43:48 2015 +0200 |
tree | 6480597fec626637d8951ad7b6f62adf28dd744c | |
parent | f0e381158a95a63a283be4cde64795d37e32134b [diff] |
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>