commit | b292394d4f1909ecad42150bf8782c3000d101b7 | [log] [tgz] |
---|---|---|
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | Tue Jan 26 16:39:14 2016 -0200 |
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | Wed Feb 10 09:29:02 2016 -0200 |
tree | e9e162980e4ebdb2a555ce9c576becc9294c7f69 | |
parent | e295b3d603fb02aaf602e5edc846647688df8301 [diff] |
[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>