|
@@ -76,7 +76,7 @@ struct basic_scan_params {
|
|
|
u8 use_ssid_list;
|
|
|
u8 scan_tag;
|
|
|
u8 padding2;
|
|
|
-} __attribute__ ((packed));
|
|
|
+} __packed;
|
|
|
|
|
|
struct basic_scan_channel_params {
|
|
|
/* Duration in TU to wait for frames on a channel for active scan */
|
|
@@ -91,19 +91,19 @@ struct basic_scan_channel_params {
|
|
|
u8 dfs_candidate;
|
|
|
u8 activity_detected;
|
|
|
u8 pad;
|
|
|
-} __attribute__ ((packed));
|
|
|
+} __packed;
|
|
|
|
|
|
struct wl1271_cmd_scan {
|
|
|
struct wl1271_cmd_header header;
|
|
|
|
|
|
struct basic_scan_params params;
|
|
|
struct basic_scan_channel_params channels[WL1271_SCAN_MAX_CHANNELS];
|
|
|
-} __attribute__ ((packed));
|
|
|
+} __packed;
|
|
|
|
|
|
struct wl1271_cmd_trigger_scan_to {
|
|
|
struct wl1271_cmd_header header;
|
|
|
|
|
|
__le32 timeout;
|
|
|
-} __attribute__ ((packed));
|
|
|
+} __packed;
|
|
|
|
|
|
#endif /* __WL1271_SCAN_H__ */
|