diff options
author | Simran Singhal <singhalsimran0@gmail.com> | 2020-03-26 17:02:10 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-03-26 15:45:08 +0100 |
commit | 78989d9ab8c123d33b82215f68b9c776c071fabb (patch) | |
tree | a63423d3e0ac9ac18aadd6de70b2b3a0b66b7a72 /scripts/bpf_helpers_doc.py | |
parent | 57e0ff116c4356f7162c744a3b0d5b4f4cbfd4d0 (diff) |
staging: rtl8723bs: hal: Remove unnecessary cast on void pointer
Assignment to a typed pointer is sufficient in C.
No cast is needed.
The following Coccinelle script was used to detect this:
@r@
expression x;
void* e;
type T;
identifier f;
@@
(
*((T *)e)
|
((T *)x)[...]
|
((T*)x)->f
|
- (T*)
e
)
Signed-off-by: Simran Singhal <singhalsimran0@gmail.com>
Link: https://lore.kernel.org/r/20200326113210.GA29951@simran-Inspiron-5558
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/bpf_helpers_doc.py')
0 files changed, 0 insertions, 0 deletions