commit | bd37c43c8dc686dc4d9102e58039e8a44ff36a08 | [log] [tgz] |
---|---|---|
author | Bhaktipriya Shridhar <bhaktipriya96@gmail.com> | Thu Feb 25 18:11:35 2016 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Mar 11 22:09:09 2016 -0800 |
tree | dd678950147e2c82790d0c5cee5e0ec1c4787acf | |
parent | 3edd192bb86c40833230fa57899d2f8718e29812 [diff] |
staging: rtl8188eu: core: Remove casts of pointer to same type Casting a pointer to a pointer of the same type is unnecessary, so remove these unnecessary casts. This was done with Coccinelle: @@ type T; T *ptr; @@ - (T *)ptr + ptr Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>