Explorar o código

bridge: netfilter: use PTR_RET instead of IS_ERR + PTR_ERR

This uses PTR_RET instead of IS_ERR and PTR_ERR in order to increase
readability.

Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Silviu-Mihai Popescu %!s(int64=12) %!d(string=hai) anos
pai
achega
5eb358d029
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  1. 1 3
      net/bridge/netfilter/ebtable_broute.c

+ 1 - 3
net/bridge/netfilter/ebtable_broute.c

@@ -64,9 +64,7 @@ static int ebt_broute(struct sk_buff *skb)
 static int __net_init broute_net_init(struct net *net)
 {
 	net->xt.broute_table = ebt_register_table(net, &broute_table);
-	if (IS_ERR(net->xt.broute_table))
-		return PTR_ERR(net->xt.broute_table);
-	return 0;
+	return PTR_RET(net->xt.broute_table);
 }
 
 static void __net_exit broute_net_exit(struct net *net)