From 5f1c42d8b61c88533fe3dceba81b2634623ecceb Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 12 Nov 2013 22:11:33 +0000 Subject: mac80211: update to wireless-testing 2013-11-05 Signed-off-by: Felix Fietkau SVN-Revision: 38783 --- ...fi-Align-private-space-in-rtl_priv-struct.patch | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 package/kernel/mac80211/patches/750-rtlwifi-Align-private-space-in-rtl_priv-struct.patch (limited to 'package/kernel/mac80211/patches/750-rtlwifi-Align-private-space-in-rtl_priv-struct.patch') diff --git a/package/kernel/mac80211/patches/750-rtlwifi-Align-private-space-in-rtl_priv-struct.patch b/package/kernel/mac80211/patches/750-rtlwifi-Align-private-space-in-rtl_priv-struct.patch deleted file mode 100644 index 050defa..0000000 --- a/package/kernel/mac80211/patches/750-rtlwifi-Align-private-space-in-rtl_priv-struct.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 60ce314d1750fef843e9db70050e09e49f838b69 Mon Sep 17 00:00:00 2001 -From: Larry Finger -Date: Thu, 19 Sep 2013 02:21:35 +0000 -Subject: rtlwifi: Align private space in rtl_priv struct - -The private array at the end of the rtl_priv struct is not aligned. -On ARM architecture, this causes an alignment trap and is fixed by aligning -that array with __align(sizeof(void *)). That should properly align that -space according to the requirements of all architectures. - -Reported-by: Jason Andrews -Tested-by: Jason Andrews -Signed-off-by: Larry Finger -Cc: Stable -Signed-off-by: John W. Linville ---- ---- a/drivers/net/wireless/rtlwifi/wifi.h -+++ b/drivers/net/wireless/rtlwifi/wifi.h -@@ -2057,7 +2057,7 @@ struct rtl_priv { - that it points to the data allocated - beyond this structure like: - rtl_pci_priv or rtl_usb_priv */ -- u8 priv[0]; -+ u8 priv[0] __aligned(sizeof(void *)); - }; - - #define rtl_priv(hw) (((struct rtl_priv *)(hw)->priv)) -- cgit v1.1