Skip to content

Commit

Permalink
drivers: video: omap2: dss: Use PTR_RET function
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Alexandru Gheorghiu authored and Tomi Valkeinen committed Apr 10, 2013
1 parent 07961ac commit 48c2169
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/video/omap2/dss/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 48c2169

Please sign in to comment.