diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2013-06-01 05:53:10 -0300 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-07-15 17:31:09 +0900 |
commit | f269158a75b64b4f43ed1d0b03c947662ba7debb (patch) | |
tree | 408176684c5d886de5989d03a53577a0169788ab | |
parent | 90668b37014f0f8fde04bb5b951fc8144057320f (diff) | |
download | linux-3.10-f269158a75b64b4f43ed1d0b03c947662ba7debb.tar.gz linux-3.10-f269158a75b64b4f43ed1d0b03c947662ba7debb.tar.bz2 linux-3.10-f269158a75b64b4f43ed1d0b03c947662ba7debb.zip |
dma-buf: Cocci spatch "ptr_ret.spatch"
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/base/dma-buf.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/base/dma-buf.c b/drivers/base/dma-buf.c index 08fe897c0b4..6687ba74187 100644 --- a/drivers/base/dma-buf.c +++ b/drivers/base/dma-buf.c @@ -680,10 +680,7 @@ int dma_buf_debugfs_create_file(const char *name, 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) |