mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-05 02:38:20 +00:00
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 <gustavo@embeddedor.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d1afdc5139
commit
baa2d2b17e
@ -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,
|
block_cb = __tcf_block_cb_register(block, cb, cb_ident, cb_priv,
|
||||||
extack);
|
extack);
|
||||||
return IS_ERR(block_cb) ? PTR_ERR(block_cb) : 0;
|
return PTR_ERR_OR_ZERO(block_cb);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(tcf_block_cb_register);
|
EXPORT_SYMBOL(tcf_block_cb_register);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user