* [PATCH] arch: s390: hypfs: Use PTR_RET function
@ 2013-03-13 19:12 Alexandru Gheorghiu
2013-03-14 7:24 ` Heiko Carstens
0 siblings, 1 reply; 2+ messages in thread
From: Alexandru Gheorghiu @ 2013-03-13 19:12 UTC (permalink / raw)
To: Martin Schwidefsky
Cc: Heiko Carstens, Al Viro, linux-kernel, Alexandru Gheorghiu
Used PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.
Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
---
arch/s390/hypfs/hypfs_dbfs.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/arch/s390/hypfs/hypfs_dbfs.c b/arch/s390/hypfs/hypfs_dbfs.c
index 9fd4a40..bb5dd49 100644
--- a/arch/s390/hypfs/hypfs_dbfs.c
+++ b/arch/s390/hypfs/hypfs_dbfs.c
@@ -105,9 +105,7 @@ void hypfs_dbfs_remove_file(struct hypfs_dbfs_file *df)
int hypfs_dbfs_init(void)
{
dbfs_dir = debugfs_create_dir("s390_hypfs", NULL);
- if (IS_ERR(dbfs_dir))
- return PTR_ERR(dbfs_dir);
- return 0;
+ return PTR_RET(dbfs_dir);
}
void hypfs_dbfs_exit(void)
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] arch: s390: hypfs: Use PTR_RET function
2013-03-13 19:12 [PATCH] arch: s390: hypfs: Use PTR_RET function Alexandru Gheorghiu
@ 2013-03-14 7:24 ` Heiko Carstens
0 siblings, 0 replies; 2+ messages in thread
From: Heiko Carstens @ 2013-03-14 7:24 UTC (permalink / raw)
To: Alexandru Gheorghiu; +Cc: Martin Schwidefsky, Al Viro, linux-kernel
On Wed, Mar 13, 2013 at 09:12:38PM +0200, Alexandru Gheorghiu wrote:
> Used PTR_RET function instead of IS_ERR and PTR_ERR.
> Patch found using coccinelle.
>
> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
> ---
> arch/s390/hypfs/hypfs_dbfs.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-14 7:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-13 19:12 [PATCH] arch: s390: hypfs: Use PTR_RET function Alexandru Gheorghiu
2013-03-14 7:24 ` Heiko Carstens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox