aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/300-arm_alignment_fix.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2008-11-29 15:48:42 +0000
committerFlorian Fainelli <florian@openwrt.org>2008-11-29 15:48:42 +0000
commitdff2c6a6d0c9ae8b3fe99270f0736244a737aa72 (patch)
tree307d2a328c7e73f328d1f17d3b8068173984f11c /package/mac80211/patches/300-arm_alignment_fix.patch
parentf6bdc6a9bd33dfb7bad220146af73c36dc6fb4ea (diff)
downloadupstream-dff2c6a6d0c9ae8b3fe99270f0736244a737aa72.tar.gz
upstream-dff2c6a6d0c9ae8b3fe99270f0736244a737aa72.tar.bz2
upstream-dff2c6a6d0c9ae8b3fe99270f0736244a737aa72.zip
Update mac80211 and make b43 driver build and load on targets other than brcm47xx (#4266)
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 13431
Diffstat (limited to 'package/mac80211/patches/300-arm_alignment_fix.patch')
-rw-r--r--package/mac80211/patches/300-arm_alignment_fix.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/package/mac80211/patches/300-arm_alignment_fix.patch b/package/mac80211/patches/300-arm_alignment_fix.patch
deleted file mode 100644
index 1de5ed48e4..0000000000
--- a/package/mac80211/patches/300-arm_alignment_fix.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-On ARM alignment is done slightly different from other architectures.
-struct ieee80211_tx_rate is aligned to word size, even though it only has 3
-single-byte members, which triggers the BUILD_BUG_ON in
-ieee80211_tx_info_clear_status
-
-This patch marks the struct ieee80211_tx_rate as packed, so that ARM
-behaves like the other architectures.
-
-Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-
---- a/include/net/mac80211.h
-+++ b/include/net/mac80211.h
-@@ -299,7 +299,7 @@ struct ieee80211_tx_rate {
- s8 idx;
- u8 count;
- u8 flags;
--};
-+} __attribute__((packed));
-
- /**
- * struct ieee80211_tx_info - skb transmit information