staging: rtl8188eu: core: Remove casts of pointer to same type
authorBhaktipriya Shridhar <bhaktipriya96@gmail.com>
Thu, 25 Feb 2016 12:41:35 +0000 (18:11 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Mar 2016 06:09:09 +0000 (22:09 -0800)
commitbd37c43c8dc686dc4d9102e58039e8a44ff36a08
treedd678950147e2c82790d0c5cee5e0ec1c4787acf
parent3edd192bb86c40833230fa57899d2f8718e29812
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>
drivers/staging/rtl8188eu/core/rtw_recv.c