aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/unicast.c
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2012-06-03 22:19:15 +0200
committerAntonio Quartulli <ordex@autistici.org>2012-06-28 08:45:02 +0200
commit4d5d2db8d5a40b18e562fe2fa4ef9b1f9710ff82 (patch)
treeb124e83605fd78b53e93df328368ade59fc9b2ef /net/batman-adv/unicast.c
parentbatman-adv: Prefix types defines with BATADV_ (diff)
downloadlinux-dev-4d5d2db8d5a40b18e562fe2fa4ef9b1f9710ff82.tar.xz
linux-dev-4d5d2db8d5a40b18e562fe2fa4ef9b1f9710ff82.zip
batman-adv: Prefix unicast defines with BATADV_
Reported-by: Martin Hundebøll <martin@hundeboll.net> Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/unicast.c')
-rw-r--r--net/batman-adv/unicast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/unicast.c b/net/batman-adv/unicast.c
index c8da6b0acc38..809832026370 100644
--- a/net/batman-adv/unicast.c
+++ b/net/batman-adv/unicast.c
@@ -98,7 +98,7 @@ static int batadv_frag_create_buffer(struct list_head *head)
int i;
struct frag_packet_list_entry *tfp;
- for (i = 0; i < FRAG_BUFFER_SIZE; i++) {
+ for (i = 0; i < BATADV_FRAG_BUFFER_SIZE; i++) {
tfp = kmalloc(sizeof(*tfp), GFP_ATOMIC);
if (!tfp) {
batadv_frag_list_free(head);