diff options
| author | Bhumika Goyal <[email protected]> | 2016-09-18 17:56:24 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2016-09-20 13:35:45 +0200 |
| commit | efdcb35a82fdd6e91b890efd3d5a5d4045e64c08 (patch) | |
| tree | 407b2cda9034cf0e42e5344c9a1b3bc90fbcd107 /tools/perf/scripts/python | |
| parent | 182eec0eb75fc17455ff4d77f5e37ae4f0c5ea1c (diff) | |
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions