diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2016-09-18 17:56:24 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-20 13:35:45 +0200 |
commit | efdcb35a82fdd6e91b890efd3d5a5d4045e64c08 (patch) | |
tree | 407b2cda9034cf0e42e5344c9a1b3bc90fbcd107 /arch/avr32 | |
parent | 182eec0eb75fc17455ff4d77f5e37ae4f0c5ea1c (diff) | |
download | linux-efdcb35a82fdd6e91b890efd3d5a5d4045e64c08.tar.bz2 |
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 'arch/avr32')
0 files changed, 0 insertions, 0 deletions