summaryrefslogtreecommitdiff
path: root/net/batman-adv/packet.h
diff options
context:
space:
mode:
authorSimon Wunderlich <simon.wunderlich@s2003.tu-chemnitz.de>2012-06-23 12:34:18 +0200
committerAntonio Quartulli <ordex@autistici.org>2012-08-23 14:02:42 +0200
commit3eb8773e3a24d88ca528993af3756af70f307a82 (patch)
tree22fc0b3068e56f157a5821ce4d348e6bf334c409 /net/batman-adv/packet.h
parent99e966fc969360bed8d3bb71c144fa10ba7a12d0 (diff)
downloadlinux-3.10-3eb8773e3a24d88ca528993af3756af70f307a82.tar.gz
linux-3.10-3eb8773e3a24d88ca528993af3756af70f307a82.tar.bz2
linux-3.10-3eb8773e3a24d88ca528993af3756af70f307a82.zip
batman-adv: rename bridge loop avoidance claim types
for consistency reasons within the code and with the documentation, we should always call it "claim" and "unclaim". Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/packet.h')
-rw-r--r--net/batman-adv/packet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/packet.h b/net/batman-adv/packet.h
index 8d3e55a96ad..65d66e4ee75 100644
--- a/net/batman-adv/packet.h
+++ b/net/batman-adv/packet.h
@@ -92,8 +92,8 @@ enum batadv_tt_client_flags {
/* claim frame types for the bridge loop avoidance */
enum batadv_bla_claimframe {
- BATADV_CLAIM_TYPE_ADD = 0x00,
- BATADV_CLAIM_TYPE_DEL = 0x01,
+ BATADV_CLAIM_TYPE_CLAIM = 0x00,
+ BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
BATADV_CLAIM_TYPE_REQUEST = 0x03,
};