summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2016-09-18 17:56:24 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-20 13:35:45 +0200
commitefdcb35a82fdd6e91b890efd3d5a5d4045e64c08 (patch)
tree407b2cda9034cf0e42e5344c9a1b3bc90fbcd107 /drivers/staging/rtl8192e
parent182eec0eb75fc17455ff4d77f5e37ae4f0c5ea1c (diff)
downloadlinux-efdcb35a82fdd6e91b890efd3d5a5d4045e64c08.tar.gz
linux-efdcb35a82fdd6e91b890efd3d5a5d4045e64c08.tar.bz2
linux-efdcb35a82fdd6e91b890efd3d5a5d4045e64c08.zip
Staging: rtl8192u: Remove useless type conversion
Some type conversions like casting a pointer to a pointer of same type, casting to the original type using addressof(&) operator etc. are not needed. Therefore, remove them. Done using coccinelle: @@ type t; t *p; t a; @@ ( - (t)(a) + a | - (t *)(p) + p | - (t *)(&a) + &a ) Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
0 files changed, 0 insertions, 0 deletions