OSDN Git Service

[media] media: platform: vivid: vivid-osd: Remove unnecessary cast to kfree
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Tue, 26 Jan 2016 18:39:14 +0000 (16:39 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 10 Feb 2016 11:29:02 +0000 (09:29 -0200)
commitb292394d4f1909ecad42150bf8782c3000d101b7
treee9e162980e4ebdb2a555ce9c576becc9294c7f69
parente295b3d603fb02aaf602e5edc846647688df8301
[media] media: platform: vivid: vivid-osd: Remove unnecessary cast to kfree

Remove an unnecassary cast 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: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/vivid/vivid-osd.c