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-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e5c6bc6f19d8c293f86b347cddab54d5a3830b38;p=linux.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;