summaryrefslogtreecommitdiffstats
path: root/net/batman-adv/routing.h
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2015-05-26 12:34:26 -0400
committerAntonio Quartulli <antonio@meshcoding.com>2015-08-24 18:12:17 -0400
commit6b5e971a282c0e7b18b47823103d695352b5a3c2 (patch)
treeeb0767ee98e4061e53c4278dd776bd6ff6c24ffd /net/batman-adv/routing.h
parent56fff0a01fa056502a28d67cb5a2714d64780415 (diff)
batman-adv: Replace C99 int types with kernel type
(s|u)(8|16|32|64) are the preferred types in the kernel. The use of the standard C99 types u?int(8|16|32|64)_t are objected by some people and even checkpatch now warns about using them. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
Diffstat (limited to 'net/batman-adv/routing.h')
-rw-r--r--net/batman-adv/routing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/routing.h b/net/batman-adv/routing.h
index 6bc29d33abc1..3c185a1fb7a9 100644
--- a/net/batman-adv/routing.h
+++ b/net/batman-adv/routing.h
@@ -55,7 +55,7 @@ struct batadv_neigh_node *
55batadv_find_router(struct batadv_priv *bat_priv, 55batadv_find_router(struct batadv_priv *bat_priv,
56 struct batadv_orig_node *orig_node, 56 struct batadv_orig_node *orig_node,
57 struct batadv_hard_iface *recv_if); 57 struct batadv_hard_iface *recv_if);
58int batadv_window_protected(struct batadv_priv *bat_priv, int32_t seq_num_diff, 58int batadv_window_protected(struct batadv_priv *bat_priv, s32 seq_num_diff,
59 unsigned long *last_reset); 59 unsigned long *last_reset);
60 60
61#endif /* _NET_BATMAN_ADV_ROUTING_H_ */ 61#endif /* _NET_BATMAN_ADV_ROUTING_H_ */