2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-28 07:04:00 +08:00
linux-next/drivers/staging/rtl8723bs
Amitoj Kaur Chawla 428715bac6 staging: rtl8723bs: Remove unnecessary cast in kfree
Remove unnecassary casts in the argument to kfree.

Found using Coccinelle. The semantic patch used to find this is as
follows:

//<smpl>
@@
type T;
expression *f;
@@

- kfree((T *)(f));
+ kfree(f);
//</smpl>

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-06-23 19:36:49 +02:00
..
core Staging: rtl8723bs: core: rtw_mlme: Fix spelling issues 2017-05-16 13:53:23 +02:00
hal staging: rtl8723bs: hal: Use (true/false) in assignment to bool 2017-06-23 19:36:49 +02:00
include staging: rtl8723bs: Use vsnprintf extensions %pM and %pI4 2017-06-13 14:59:29 +02:00
os_dep staging: rtl8723bs: Remove unnecessary cast in kfree 2017-06-23 19:36:49 +02:00
Kconfig
Makefile
TODO