* Re: [PATCH] qeth: replace PTR_RET with PTR_ERR_OR_ZERO
[not found] <1397210670-28544-1-git-send-email-duanj.fnst@cn.fujitsu.com>
@ 2014-04-11 11:46 ` Martin Schwidefsky
0 siblings, 0 replies; only message in thread
From: Martin Schwidefsky @ 2014-04-11 11:46 UTC (permalink / raw)
To: linux-s390
On Fri, 11 Apr 2014 18:04:30 +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/net/qeth_core_main.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/s390/net/qeth_core_main.c b/drivers/s390/net/qeth_core_main.c
> index 22470a3..f5bd422 100644
> --- a/drivers/s390/net/qeth_core_main.c
> +++ b/drivers/s390/net/qeth_core_main.c
> @@ -5824,7 +5824,7 @@ static int __init qeth_core_init(void)
> if (rc)
> goto out_err;
> qeth_core_root_dev = root_device_register("qeth");
> - rc = PTR_RET(qeth_core_root_dev);
> + rc = PTR_ERR_OR_ZERO(qeth_core_root_dev);
> if (rc)
> goto register_err;
> qeth_core_header_cache = kmem_cache_create("qeth_hdr",
Applied to our internal tree and will be added to the network
patch queue. Thanks.
--
blue skies,
Martin.
"Reality continues to ruin my life." - Calvin.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-04-11 11:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1397210670-28544-1-git-send-email-duanj.fnst@cn.fujitsu.com>
2014-04-11 11:46 ` [PATCH] qeth: replace PTR_RET with PTR_ERR_OR_ZERO Martin Schwidefsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox