From: Deren Wu Date: Mon, 28 Nov 2022 07:04:21 +0000 (+0800) Subject: wifi: mt76: mt7921: Add missing __packed annotation of struct mt7921_clc X-Git-Tag: v6.2-rc1~99^2~77^2~2^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5c6bc6f19d8c293f86b347cddab54d5a3830b38;p=thirdparty%2Flinux.git wifi: mt76: mt7921: Add missing __packed annotation of struct mt7921_clc Add __packed annotation to avoid potential CLC parsing error Fixes: 23bdc5d8cadf ("wifi: mt76: mt7921: introduce Country Location Control support") Signed-off-by: Deren Wu Signed-off-by: Felix Fietkau --- diff --git a/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h b/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h index 6fc04ed34ec35..15d6b7fe1c6c8 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h +++ b/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h @@ -224,7 +224,7 @@ struct mt7921_clc { u8 type; u8 rsv[8]; u8 data[]; -}; +} __packed; struct mt7921_phy { struct mt76_phy *mt76;