]> asedeno.scripts.mit.edu Git - linux.git/commit
staging: ccree: remove unnecessary cast on kmalloc
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Sun, 9 Jul 2017 05:43:37 +0000 (00:43 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Jul 2017 06:40:57 +0000 (08:40 +0200)
commit60ba7c7c26b8df3688a952cf4bcfbc8dcdafdb9b
treedf29908372c5f77b3c3dacfd20e89779fd284b42
parentf7d0879f10080d52b1af383f049b880c78e4fa82
staging: ccree: remove unnecessary cast on kmalloc

The assignment operator implicitly converts a void pointer to the type of the
pointer it is assigned to.

This issue was detected using Coccinelle and the following semantic patch:

@@
expression * e;
expression arg1, arg2;
type T;
@@

- e=(T*)
+ e=
kmalloc(arg1, arg2);

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Acked-by: Gilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ccree/ssi_buffer_mgr.c