aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/300-arm_alignment_fix.patch
blob: 1de5ed48e488122a9cf9bf9a7167110286cd70bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
E:=Broadcom BCM63xx PCMCIA support DEPENDS:=@TARGET_brcm63xx +kmod-pcmcia-rsrc KCONFIG:=CONFIG_PCMCIA_BCM63XX FILES:=$(LINUX_DIR)/drivers/pcmcia/bcm63xx_pcmcia.ko AUTOLOAD:=$(call AutoLoad,41,bcm63xx_pcmcia) endef define KernelPackage/pcmcia-bcm63xx/description Kernel support for PCMCIA/CardBus controller on the BCM63xx SoC endef $(eval $(call KernelPackage,pcmcia-bcm63xx)) define KernelPackage/bcm63xx-udc SUBMENU:=$(USB_MENU) TITLE:=Broadcom BCM63xx UDC support DEPENDS:=@TARGET_brcm63xx +kmod-usb-gadget KCONFIG:=CONFIG_USB_BCM63XX_UDC FILES:= \ $(LINUX_DIR)/drivers/usb/gadget/udc/bcm63xx_udc.ko AUTOLOAD:=$(call AutoLoad,51,bcm63xx_udc) $(call AddDepends/usb) endef define KernelPackage/bcm63xx-udc/description Kernel support for the USB gadget (device) controller on the BCM63xx SoC endef $(eval $(call KernelPackage,bcm63xx-udc))