Commit 6fc77a54 authored by Sven Eckelmann's avatar Sven Eckelmann Committed by Antonio Quartulli

batman-adv: Fix function names on new line starting with '*'

Some really long function names in batman-adv require a newline between
return type and the function name. This has lead to some lines starting
with *batadv_...

This * belongs to the return type and thus should be on the same line as
the return type.
Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
Signed-off-by: default avatarMarek Lindner <mareklindner@neomailbox.ch>
Signed-off-by: default avatarAntonio Quartulli <a@unstable.cc>
parent f298cb94
...@@ -200,8 +200,8 @@ static void batadv_claim_put(struct batadv_bla_claim *claim) ...@@ -200,8 +200,8 @@ static void batadv_claim_put(struct batadv_bla_claim *claim)
* *
* Return: claim if found or NULL otherwise. * Return: claim if found or NULL otherwise.
*/ */
static struct batadv_bla_claim static struct batadv_bla_claim *
*batadv_claim_hash_find(struct batadv_priv *bat_priv, batadv_claim_hash_find(struct batadv_priv *bat_priv,
struct batadv_bla_claim *data) struct batadv_bla_claim *data)
{ {
struct batadv_hashtable *hash = bat_priv->bla.claim_hash; struct batadv_hashtable *hash = bat_priv->bla.claim_hash;
......
...@@ -663,8 +663,8 @@ static void batadv_tvlv_handler_put(struct batadv_tvlv_handler *tvlv_handler) ...@@ -663,8 +663,8 @@ static void batadv_tvlv_handler_put(struct batadv_tvlv_handler *tvlv_handler)
* *
* Return: tvlv handler if found or NULL otherwise. * Return: tvlv handler if found or NULL otherwise.
*/ */
static struct batadv_tvlv_handler static struct batadv_tvlv_handler *
*batadv_tvlv_handler_get(struct batadv_priv *bat_priv, u8 type, u8 version) batadv_tvlv_handler_get(struct batadv_priv *bat_priv, u8 type, u8 version)
{ {
struct batadv_tvlv_handler *tvlv_handler_tmp, *tvlv_handler = NULL; struct batadv_tvlv_handler *tvlv_handler_tmp, *tvlv_handler = NULL;
...@@ -722,8 +722,8 @@ static void batadv_tvlv_container_put(struct batadv_tvlv_container *tvlv) ...@@ -722,8 +722,8 @@ static void batadv_tvlv_container_put(struct batadv_tvlv_container *tvlv)
* *
* Return: tvlv container if found or NULL otherwise. * Return: tvlv container if found or NULL otherwise.
*/ */
static struct batadv_tvlv_container static struct batadv_tvlv_container *
*batadv_tvlv_container_get(struct batadv_priv *bat_priv, u8 type, u8 version) batadv_tvlv_container_get(struct batadv_priv *bat_priv, u8 type, u8 version)
{ {
struct batadv_tvlv_container *tvlv_tmp, *tvlv = NULL; struct batadv_tvlv_container *tvlv_tmp, *tvlv = NULL;
......
...@@ -793,8 +793,8 @@ static bool batadv_can_nc_with_orig(struct batadv_priv *bat_priv, ...@@ -793,8 +793,8 @@ static bool batadv_can_nc_with_orig(struct batadv_priv *bat_priv,
* *
* Return: the nc_node if found, NULL otherwise. * Return: the nc_node if found, NULL otherwise.
*/ */
static struct batadv_nc_node static struct batadv_nc_node *
*batadv_nc_find_nc_node(struct batadv_orig_node *orig_node, batadv_nc_find_nc_node(struct batadv_orig_node *orig_node,
struct batadv_orig_node *orig_neigh_node, struct batadv_orig_node *orig_neigh_node,
bool in_coding) bool in_coding)
{ {
...@@ -835,8 +835,8 @@ static struct batadv_nc_node ...@@ -835,8 +835,8 @@ static struct batadv_nc_node
* *
* Return: the nc_node if found or created, NULL in case of an error. * Return: the nc_node if found or created, NULL in case of an error.
*/ */
static struct batadv_nc_node static struct batadv_nc_node *
*batadv_nc_get_nc_node(struct batadv_priv *bat_priv, batadv_nc_get_nc_node(struct batadv_priv *bat_priv,
struct batadv_orig_node *orig_node, struct batadv_orig_node *orig_node,
struct batadv_orig_node *orig_neigh_node, struct batadv_orig_node *orig_neigh_node,
bool in_coding) bool in_coding)
......
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