提交 298b6a81 编写于 作者: V Vasyl Gomonovych 提交者: Sumit Semwal

dma-buf: Fix ifnullfree.cocci warnings

NULL check before some freeing functions is not needed.
drivers/dma-buf/dma-buf.c:1183:2-26: WARNING: NULL check before freeing debugfs_remove_recursive
Generated by: scripts/coccinelle/free/ifnullfree.cocci
Signed-off-by: NVasyl Gomonovych <gomonovych@gmail.com>
Signed-off-by: NSumit Semwal <sumit.semwal@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/1511364161-6074-1-git-send-email-gomonovych@gmail.com
上级 e2b155e9
...@@ -1179,7 +1179,6 @@ static int dma_buf_init_debugfs(void) ...@@ -1179,7 +1179,6 @@ static int dma_buf_init_debugfs(void)
static void dma_buf_uninit_debugfs(void) static void dma_buf_uninit_debugfs(void)
{ {
if (dma_buf_debugfs_dir)
debugfs_remove_recursive(dma_buf_debugfs_dir); debugfs_remove_recursive(dma_buf_debugfs_dir);
} }
#else #else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册