From 9937e1e0c4b4af6537621dca7f242dda2a5ae605 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Mon, 4 Jun 2007 21:03:52 -0400 Subject: [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 --- at76_usb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'at76_usb.h') 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; -- cgit v1.2.3