[PATCH] debugfs: file: Remove unnecessary cast in kfree()

From: Xu Wang
Date: Thu Jul 09 2020 - 01:40:55 EST


Remove unnecassary casts in the argument to kfree.

Signed-off-by: Xu Wang <vulab@xxxxxxxxxxx>
---
fs/debugfs/file.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index ae49a55bda00..3753c4c484fc 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -273,7 +273,7 @@ static int full_proxy_release(struct inode *inode, struct file *filp)
r = real_fops->release(inode, filp);

replace_fops(filp, d_inode(dentry)->i_fop);
- kfree((void *)proxy_fops);
+ kfree(proxy_fops);
fops_put(real_fops);
return r;
}
--
2.17.1