aboutsummaryrefslogtreecommitdiff
path: root/at76_usb.h
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2007-05-01 20:01:02 -0400
committerGuido Guenther <agx@bogon.sigxcpu.org>2007-05-02 11:22:18 +0200
commitb74a15493e90d141947df9d8c6755788fa8ffb96 (patch)
tree76b841c3bae62b7d6e15c97e30de729730e49157 /at76_usb.h
parent2ae6ea8fd9ea34081d6b55620b15611da69b2146 (diff)
[PATCH] Call private data (at76_priv) "priv", not "dev", the later is ambiguous
Signed-off-by: Pavel Roskin <proski@gnu.org>
Diffstat (limited to 'at76_usb.h')
-rw-r--r--at76_usb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/at76_usb.h b/at76_usb.h
index 97f46d6..f32bb61 100644
--- a/at76_usb.h
+++ b/at76_usb.h
@@ -433,7 +433,7 @@ struct bss_info {
u8 noise_level;
unsigned long last_rx; /* time (jiffies) of last beacon received */
- u16 assoc_id; /* if this is dev->curr_bss this is the assoc id we got
+ u16 assoc_id; /* if this is priv->curr_bss this is the assoc id we got
in a successful AssocResponse */
};
@@ -525,9 +525,9 @@ struct at76_priv {
before and must not remove curr_bss nor
new_bss ! */
struct bss_info *curr_bss; /* if istate == AUTH, ASSOC, REASSOC, JOIN or CONN
- dev->bss[curr_bss] is the currently selected BSS
+ priv->bss[curr_bss] is the currently selected BSS
we operate on */
- struct bss_info *new_bss; /* if istate == REASSOC dev->new_bss
+ struct bss_info *new_bss; /* if istate == REASSOC priv->new_bss
is the new bss we want to reassoc to */
u8 wanted_bssid[ETH_ALEN];