aboutsummaryrefslogtreecommitdiff
path: root/at76_usb.h
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2007-06-04 21:03:52 -0400
committerGuido Guenther <agx@sigxcpu.org>2007-06-05 08:59:33 +0200
commit9937e1e0c4b4af6537621dca7f242dda2a5ae605 (patch)
tree8c73cef6a4f7628fbd386ccc00fc7498f11cae86 /at76_usb.h
parent0e88cc2d6c58fc6209ff0d5cdf1329a83b341bbd (diff)
[PATCH] Rename request structures to make them distinct from functions
at76_start_scan was both a function and a structure. Use "req" in the structure names to indicate that they are requests. 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 7fd61f5..428a562 100644
--- a/at76_usb.h
+++ b/at76_usb.h
@@ -222,7 +222,7 @@ struct at76_tx_buffer {
#define SCAN_TYPE_ACTIVE 0
#define SCAN_TYPE_PASSIVE 1
-struct at76_start_scan {
+struct at76_req_scan {
u8 bssid[ETH_ALEN];
u8 essid[32];
u8 scan_type;
@@ -234,7 +234,7 @@ struct at76_start_scan {
u8 international_scan;
} __attribute__ ((packed));
-struct at76_start_bss {
+struct at76_req_ibss {
u8 bssid[ETH_ALEN];
u8 essid[32];
u8 bss_type;
@@ -243,7 +243,7 @@ struct at76_start_bss {
u8 reserved[3];
} __attribute__ ((packed));
-struct at76_join {
+struct at76_req_join {
u8 bssid[ETH_ALEN];
u8 essid[32];
u8 bss_type;