diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/libertas/assoc.c | 6 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/dev.h | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c index c622e9b63cd1..87e145ffe8f1 100644 --- a/drivers/net/wireless/libertas/assoc.c +++ b/drivers/net/wireless/libertas/assoc.c | |||
@@ -12,8 +12,10 @@ | |||
12 | #include "cmd.h" | 12 | #include "cmd.h" |
13 | 13 | ||
14 | 14 | ||
15 | static const u8 bssid_any[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; | 15 | static const u8 bssid_any[ETH_ALEN] __attribute__ ((aligned (2))) = |
16 | static const u8 bssid_off[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | 16 | { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; |
17 | static const u8 bssid_off[ETH_ALEN] __attribute__ ((aligned (2))) = | ||
18 | { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | ||
17 | 19 | ||
18 | 20 | ||
19 | static int assoc_helper_essid(struct lbs_private *priv, | 21 | static int assoc_helper_essid(struct lbs_private *priv, |
diff --git a/drivers/net/wireless/libertas/dev.h b/drivers/net/wireless/libertas/dev.h index 58d7ef6b5ff5..5a69f2b60865 100644 --- a/drivers/net/wireless/libertas/dev.h +++ b/drivers/net/wireless/libertas/dev.h | |||
@@ -349,7 +349,7 @@ struct assoc_request { | |||
349 | u8 channel; | 349 | u8 channel; |
350 | u8 band; | 350 | u8 band; |
351 | u8 mode; | 351 | u8 mode; |
352 | u8 bssid[ETH_ALEN]; | 352 | u8 bssid[ETH_ALEN] __attribute__ ((aligned (2))); |
353 | 353 | ||
354 | /** WEP keys */ | 354 | /** WEP keys */ |
355 | struct enc_key wep_keys[4]; | 355 | struct enc_key wep_keys[4]; |