From: Martin Schwidefsky <schwidefsky@de.ibm.com>
To: linux-s390@vger.kernel.org
Subject: Re: [PATCH] s390/sclp: replace PTR_RET with PTR_ERR_OR_ZERO
Date: Fri, 11 Apr 2014 11:48:07 +0000 [thread overview]
Message-ID: <20140411134807.393a135b@mschwide> (raw)
In-Reply-To: <1397210706-28665-1-git-send-email-duanj.fnst@cn.fujitsu.com>
On Fri, 11 Apr 2014 18:05:06 +0800
Duan Jiong <duanj.fnst@cn.fujitsu.com> wrote:
> PTR_RET is deprecated. Do not recommend its usage anymore.
> Use PTR_ERR_OR_ZERO instead.
>
> Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com>
> ---
> drivers/s390/char/sclp_cmd.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/s390/char/sclp_cmd.c b/drivers/s390/char/sclp_cmd.c
> index 6e8f90f..6e14999 100644
> --- a/drivers/s390/char/sclp_cmd.c
> +++ b/drivers/s390/char/sclp_cmd.c
> @@ -515,7 +515,7 @@ static int __init sclp_detect_standby_memory(void)
> if (rc)
> goto out;
> sclp_pdev = platform_device_register_simple("sclp_mem", -1, NULL, 0);
> - rc = PTR_RET(sclp_pdev);
> + rc = PTR_ERR_OR_ZERO(sclp_pdev);
> if (rc)
> goto out_driver;
> sclp_add_standby_memory();
Applied to our internal tree and will be added to the linux-s390 tree.
Thanks.
--
blue skies,
Martin.
"Reality continues to ruin my life." - Calvin.
parent reply other threads:[~2014-04-11 11:48 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <1397210706-28665-1-git-send-email-duanj.fnst@cn.fujitsu.com>]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140411134807.393a135b@mschwide \
--to=schwidefsky@de.ibm.com \
--cc=linux-s390@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.