Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c804850 authored by Linus Lüssing's avatar Linus Lüssing Committed by Sven Eckelmann
Browse files

batman-adv: Make gateway_get_selected type safe



Make the return value explicit instead of (void *).

Signed-off-by: default avatarLinus Lüssing <linus.luessing@web.de>
Signed-off-by: default avatarMarek Lindner <lindner_marek@yahoo.de>
Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
parent 55158629
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ static void gw_node_free_ref(struct gw_node *gw_node)
		call_rcu(&gw_node->rcu, gw_node_free_rcu);
}

void *gw_get_selected(struct bat_priv *bat_priv)
struct orig_node *gw_get_selected(struct bat_priv *bat_priv)
{
	struct gw_node *curr_gateway_tmp;
	struct orig_node *orig_node = NULL;
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@

void gw_deselect(struct bat_priv *bat_priv);
void gw_election(struct bat_priv *bat_priv);
void *gw_get_selected(struct bat_priv *bat_priv);
struct orig_node *gw_get_selected(struct bat_priv *bat_priv);
void gw_check_election(struct bat_priv *bat_priv, struct orig_node *orig_node);
void gw_node_update(struct bat_priv *bat_priv,
		    struct orig_node *orig_node, uint8_t new_gwflags);