diff options
author | Marek Lindner <lindner_marek@yahoo.de> | 2010-02-19 10:18:07 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-03-03 19:43:02 -0500 |
commit | bc0ad071a788625abb23aee4cb3c07d17d501641 (patch) | |
tree | b831c010ce7322a81d4e5756f88c2aed2a61dd08 | |
parent | 149de2e58b53cb87c9637a46441c477f0caf74bd (diff) |
Staging: batman-adv: remove obsolete variables
This patch removes a variable that became obsolete since the skb handling
replaced the packet handling thread.
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/batman-adv/routing.c | 2 | ||||
-rw-r--r-- | drivers/staging/batman-adv/routing.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/staging/batman-adv/routing.c b/drivers/staging/batman-adv/routing.c index 8abaa6193ac3..7dc9aef9bef4 100644 --- a/drivers/staging/batman-adv/routing.c +++ b/drivers/staging/batman-adv/routing.c | |||
@@ -35,8 +35,6 @@ | |||
35 | 35 | ||
36 | DECLARE_WAIT_QUEUE_HEAD(thread_wait); | 36 | DECLARE_WAIT_QUEUE_HEAD(thread_wait); |
37 | 37 | ||
38 | atomic_t exit_cond; | ||
39 | |||
40 | void slide_own_bcast_window(struct batman_if *batman_if) | 38 | void slide_own_bcast_window(struct batman_if *batman_if) |
41 | { | 39 | { |
42 | HASHIT(hashit); | 40 | HASHIT(hashit); |
diff --git a/drivers/staging/batman-adv/routing.h b/drivers/staging/batman-adv/routing.h index c217241d0efd..939b8d4f733c 100644 --- a/drivers/staging/batman-adv/routing.h +++ b/drivers/staging/batman-adv/routing.h | |||
@@ -22,7 +22,6 @@ | |||
22 | #include "types.h" | 22 | #include "types.h" |
23 | 23 | ||
24 | extern wait_queue_head_t thread_wait; | 24 | extern wait_queue_head_t thread_wait; |
25 | extern atomic_t exit_cond; | ||
26 | 25 | ||
27 | void slide_own_bcast_window(struct batman_if *batman_if); | 26 | void slide_own_bcast_window(struct batman_if *batman_if); |
28 | void receive_bat_packet(struct ethhdr *ethhdr, | 27 | void receive_bat_packet(struct ethhdr *ethhdr, |