From: Gustavo A. R. Silva Date: Thu, 19 Jul 2018 04:14:17 +0000 (-0500) Subject: net: sched: use PTR_ERR_OR_ZERO macro in tcf_block_cb_register X-Git-Tag: v4.19-rc1~140^2~302 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=baa2d2b17ee93e2a5b8accc2dd5328db17caf90e;p=uclinux-h8%2Flinux.git net: sched: use PTR_ERR_OR_ZERO macro in tcf_block_cb_register This line makes up what macro PTR_ERR_OR_ZERO already does. So, make use of PTR_ERR_OR_ZERO rather than an open-code version. This code was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva Signed-off-by: David S. Miller --- diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index 623fe2cfe529..620067209ba8 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -818,7 +818,7 @@ int tcf_block_cb_register(struct tcf_block *block, block_cb = __tcf_block_cb_register(block, cb, cb_ident, cb_priv, extack); - return IS_ERR(block_cb) ? PTR_ERR(block_cb) : 0; + return PTR_ERR_OR_ZERO(block_cb); } EXPORT_SYMBOL(tcf_block_cb_register);