diff mbox

[Linaro-mm-sig] dma-buf: Cocci spatch "ptr_ret.spatch"

Message ID 1370080390.29224.25.camel@localhost.localdomain
State Accepted
Commit 703e60655ca520c5380d8c83a9db0d5e9b906856
Headers show

Commit Message

Thomas Meyer June 1, 2013, 9:53 a.m. UTC
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
---
diff mbox

Patch

diff -u -p a/drivers/base/dma-buf.c b/drivers/base/dma-buf.c
--- a/drivers/base/dma-buf.c
+++ b/drivers/base/dma-buf.c
@@ -680,10 +680,7 @@  int dma_buf_debugfs_create_file(const ch
 	d = debugfs_create_file(name, S_IRUGO, dma_buf_debugfs_dir,
 			write, &dma_buf_debug_fops);
 
-	if (IS_ERR(d))
-		return PTR_ERR(d);
-
-	return 0;
+	return PTR_RET(d);
 }
 #else
 static inline int dma_buf_init_debugfs(void)