比如以下:
__packed struct ieee80211_country_ie_triplet{
union {
__packed struct {
u8 first_channel;
u8 num_channels;
s8 max_power;
}chans;
__packed struct {
u8 reg_extension_id;
u8 reg_class;
u8 coverage_class;
}ext;
}country;
};
在ADS下编译报错:
(Serious) C23797E: cannot have member 'country'of type unpacked 'union
' in '__packed' 'struct ieee80211_country_ie_triplet'
......