Commit cde3fac5 authored by Minghao Chi's avatar Minghao Chi Committed by Simon Wunderlich

batman-adv: remove unneeded variable in batadv_nc_init

Return status directly from function called.
Reported-by: default avatarZeal Robot <zealci@zte.com.cn>
Signed-off-by: default avatarMinghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
Signed-off-by: default avatarSimon Wunderlich <sw@simonwunderlich.de>
parent 9057d6c2
...@@ -58,13 +58,9 @@ static int batadv_nc_recv_coded_packet(struct sk_buff *skb, ...@@ -58,13 +58,9 @@ static int batadv_nc_recv_coded_packet(struct sk_buff *skb,
*/ */
int __init batadv_nc_init(void) int __init batadv_nc_init(void)
{ {
int ret;
/* Register our packet type */ /* Register our packet type */
ret = batadv_recv_handler_register(BATADV_CODED, return batadv_recv_handler_register(BATADV_CODED,
batadv_nc_recv_coded_packet); batadv_nc_recv_coded_packet);
return ret;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment