1
0
Fork 0

netlabel: directly return netlbl_unlabel_genl_init()

No need to store netlbl_unlabel_genl_init result and test it before returning.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
wifi-calibration
Fabian Frederick 2014-10-08 20:37:01 +02:00 committed by David S. Miller
parent 535114539b
commit 16b99a4f66
1 changed files with 1 additions and 5 deletions

View File

@ -71,11 +71,7 @@ int __init netlbl_netlink_init(void)
if (ret_val != 0)
return ret_val;
ret_val = netlbl_unlabel_genl_init();
if (ret_val != 0)
return ret_val;
return 0;
return netlbl_unlabel_genl_init();
}
/*