aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/main.h
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2011-07-05 04:42:51 -0400
committerMarek Lindner <lindner_marek@yahoo.de>2011-07-05 08:48:56 -0400
commit44c4349a2a117b22a5c4087f2ac9faf10c575e17 (patch)
treeb326a102f069a56f02de40aa2844e6c77675e6ab /net/batman-adv/main.h
parentb539e4cd3b08dddbaa2ba0f158eed3c7c2244eaf (diff)
batman-adv: Replace version info instead of appending them
The version number of modules build outside of the tree can get revision numbers added. This is useful to give hints about the revision of a distribution package and the used patchset. The prepended source number or branch name doesn't add any additional information which would help to identify problems and can therefore be omitted. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Diffstat (limited to 'net/batman-adv/main.h')
-rw-r--r--net/batman-adv/main.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h
index 4f293b594475..a6df61a6933b 100644
--- a/net/batman-adv/main.h
+++ b/net/batman-adv/main.h
@@ -27,8 +27,9 @@
27#define DRIVER_DESC "B.A.T.M.A.N. advanced" 27#define DRIVER_DESC "B.A.T.M.A.N. advanced"
28#define DRIVER_DEVICE "batman-adv" 28#define DRIVER_DEVICE "batman-adv"
29 29
30#define SOURCE_VERSION "next" 30#ifndef SOURCE_VERSION
31 31#define SOURCE_VERSION "2011.3.0"
32#endif
32 33
33/* B.A.T.M.A.N. parameters */ 34/* B.A.T.M.A.N. parameters */
34 35
@@ -144,12 +145,6 @@ enum dbg_level {
144#include <linux/seq_file.h> 145#include <linux/seq_file.h>
145#include "types.h" 146#include "types.h"
146 147
147#ifndef REVISION_VERSION
148#define REVISION_VERSION_STR ""
149#else
150#define REVISION_VERSION_STR " "REVISION_VERSION
151#endif
152
153extern struct list_head hardif_list; 148extern struct list_head hardif_list;
154 149
155extern unsigned char broadcast_addr[]; 150extern unsigned char broadcast_addr[];