mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 17:26:42 +09:00
net/mlx5: Use ERR_CAST() instead of coding it
This makes it more readable that rule is being used to return an err. Signed-off-by: Roi Dayan <roid@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
committed by
Saeed Mahameed
parent
0f4039104e
commit
d34c6efc59
@@ -1825,7 +1825,7 @@ search_again_locked:
|
||||
|
||||
g = alloc_auto_flow_group(ft, spec);
|
||||
if (IS_ERR(g)) {
|
||||
rule = (void *)g;
|
||||
rule = ERR_CAST(g);
|
||||
up_write_ref_node(&ft->node);
|
||||
return rule;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user