diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-05-12 07:48:56 -0400 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-06-24 12:41:41 -0400 |
commit | da641193dd3117ccd408dc589a131f16286b0da0 (patch) | |
tree | b819cd7c61837e6c7c889e76fb9a38f6c83d4f54 /net/batman-adv/icmp_socket.c | |
parent | c0a559295eb2601602f7dc88f4240afcd666f73a (diff) |
batman-adv: Prefix originator static inline functions with batadv_
All non-static symbols of batman-adv were prefixed with batadv_ to avoid
collisions with other symbols of the kernel. Other symbols of batman-adv
should use the same prefix to keep the naming scheme consistent.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/icmp_socket.c')
-rw-r--r-- | net/batman-adv/icmp_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/icmp_socket.c b/net/batman-adv/icmp_socket.c index 2523436907e6..50a74dadb4d6 100644 --- a/net/batman-adv/icmp_socket.c +++ b/net/batman-adv/icmp_socket.c | |||
@@ -213,7 +213,7 @@ static ssize_t bat_socket_write(struct file *file, const char __user *buff, | |||
213 | if (atomic_read(&bat_priv->mesh_state) != MESH_ACTIVE) | 213 | if (atomic_read(&bat_priv->mesh_state) != MESH_ACTIVE) |
214 | goto dst_unreach; | 214 | goto dst_unreach; |
215 | 215 | ||
216 | orig_node = orig_hash_find(bat_priv, icmp_packet->dst); | 216 | orig_node = batadv_orig_hash_find(bat_priv, icmp_packet->dst); |
217 | if (!orig_node) | 217 | if (!orig_node) |
218 | goto dst_unreach; | 218 | goto dst_unreach; |
219 | 219 | ||