>>> Index: wireless-testing-save/drivers/net/wireless/rtlwifi/wifi.h >>> =================================================================== >>> --- wireless-testing-save.orig/drivers/net/wireless/rtlwifi/wifi.h >>> +++ wireless-testing-save/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 __aligned(4) priv[0]; >>> }; >> >> >> __attribute__((aligned)) might be a safer bet, as this will align it to >> the largest alignment that could possibly be needed. Or copy the code from mac80211.h: u8 drv_priv[0] __aligned(sizeof(void *)); I did the same in iwlwifi. Note the new way to add the __aligned thing. Joe will tell you that is better than __attribute__ blablabla -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html