aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/net/ctcm_main.c
diff options
context:
space:
mode:
authorFrank Blaschka <[email protected]>2014-04-28 08:05:11 +0000
committerDavid S. Miller <[email protected]>2014-04-28 17:44:10 +0000
commitd37556eb1cb76b5e2320fc1ea94dfab29fce878c (patch)
treec1cf1f61b1f0633f7a7911666cf6cbdeb9f2596e /drivers/s390/net/ctcm_main.c
parentclaw: replace PTR_RET with PTR_ERR_OR_ZERO (diff)
downloadkernel-d37556eb1cb76b5e2320fc1ea94dfab29fce878c.tar.gz
kernel-d37556eb1cb76b5e2320fc1ea94dfab29fce878c.zip
ctc: replace PTR_RET with PTR_ERR_OR_ZERO
PTR_RET is deprecated. Do not recommend its usage anymore. Use PTR_ERR_OR_ZERO instead. Signed-off-by: Frank Blaschka <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'drivers/s390/net/ctcm_main.c')
-rw-r--r--drivers/s390/net/ctcm_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/net/ctcm_main.c b/drivers/s390/net/ctcm_main.c
index 70b3a023100e..03b6ad035577 100644
--- a/drivers/s390/net/ctcm_main.c
+++ b/drivers/s390/net/ctcm_main.c
@@ -1837,7 +1837,7 @@ static int __init ctcm_init(void)
if (ret)
goto out_err;
ctcm_root_dev = root_device_register("ctcm");
- ret = PTR_RET(ctcm_root_dev);
+ ret = PTR_ERR_OR_ZERO(ctcm_root_dev);
if (ret)
goto register_err;
ret = ccw_driver_register(&ctcm_ccw_driver);