diff options
author | Ihar Hrachyshka <ihar.hrachyshka@promwad.com> | 2008-01-25 08:15:00 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-31 22:26:48 -0500 |
commit | 5a6e04345abf04f543373f45081d109d13d96822 (patch) | |
tree | 0e2f8f6e4d4b224c25da4afa0d5cfd5eb0da05d0 /drivers/net/wireless/libertas/dev.h | |
parent | 9e7d1a445ed0d5c1d8863945d6c4c6f018a4aa83 (diff) |
libertas: fix memory alignment problems on the blackfin
Fixing unaligned memory access on the blackfin architecture (maybe on the
ARM also).
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@promwad.com>
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Acked-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/libertas/dev.h')
-rw-r--r-- | drivers/net/wireless/libertas/dev.h | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |