Tag: bd37c43c8dc686dc4d9102e58039e8a44ff36a08

staging: rtl8188eu: core: Remove casts of pointer to same type

Author: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> 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 Signed-off-by: Greg Kroah-Hartman — drivers/staging/rtl8188eu/core/rtw_recv.c | 10 +++++—– 1 file changed, 5 insertions(+), 5 deletions(-) …

Continue reading