diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2013-06-01 04:53:10 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-06-08 19:00:29 -0400 |
commit | 703e60655ca520c5380d8c83a9db0d5e9b906856 (patch) | |
tree | 891a848f45a788da95782484acdca9fd69d6eb76 /drivers/base | |
parent | 4aab0398e003ac2effae98ba66a012ed715967ba (diff) |
[media] dma-buf: Cocci spatch "ptr_ret.spatch"
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/base')
-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 08fe897c0b4c..6687ba741879 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, | |||
680 | d = debugfs_create_file(name, S_IRUGO, dma_buf_debugfs_dir, | 680 | d = debugfs_create_file(name, S_IRUGO, dma_buf_debugfs_dir, |
681 | write, &dma_buf_debug_fops); | 681 | write, &dma_buf_debug_fops); |
682 | 682 | ||
683 | if (IS_ERR(d)) | 683 | return PTR_RET(d); |
684 | return PTR_ERR(d); | ||
685 | |||
686 | return 0; | ||
687 | } | 684 | } |
688 | #else | 685 | #else |
689 | static inline int dma_buf_init_debugfs(void) | 686 | static inline int dma_buf_init_debugfs(void) |