diff options
author | Himanshu Jha <himanshujha199640@gmail.com> | 2017-09-01 09:43:34 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2017-09-25 10:13:58 +0300 |
commit | 50c8cd44ed5fcd2cbbfe19e5b1eb680aa4440186 (patch) | |
tree | 2b08e546f5f9bda5236df77b42cdfeb3ab71d8a2 /drivers/net/wireless/broadcom/b43legacy | |
parent | 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e (diff) | |
download | linux-50c8cd44ed5fcd2cbbfe19e5b1eb680aa4440186.tar.xz |
ath9k: remove cast to void pointer
casting to void pointer from any pointer type and vice-versa is done
implicitly and therefore casting is not needed in such a case.
Done using Coccinellle.
Semantic Patch used :
@r@
expression x;
void* e;
type T;
identifier f;
@@
(
*((T *)e)
|
((T *)x)[...]
|
((T *)x)->f
|
- (T *)
e
)
Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/broadcom/b43legacy')
0 files changed, 0 insertions, 0 deletions