projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07961ac
)
drivers: video: omap2: dss: Use PTR_RET function
author
Alexandru Gheorghiu
<gheorghiuandru@gmail.com>
Tue, 19 Mar 2013 08:03:14 +0000
(10:03 +0200)
committer
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Wed, 10 Apr 2013 12:02:51 +0000
(15:02 +0300)
Use PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.
Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/core.c
patch
|
blob
|
history
diff --git
a/drivers/video/omap2/dss/core.c
b/drivers/video/omap2/dss/core.c
index
f8779d4
..
60cc6fe
100644
(file)
--- a/
drivers/video/omap2/dss/core.c
+++ b/
drivers/video/omap2/dss/core.c
@@
-181,10
+181,7
@@
int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
write, &dss_debug_fops);
- if (IS_ERR(d))
- return PTR_ERR(d);
-
- return 0;
+ return PTR_RET(d);
}
#else /* CONFIG_OMAP2_DSS_DEBUGFS */
static inline int dss_initialize_debugfs(void)