pmdomain: mediatek: mfg: move __packed after struct name to fix kernel-doc

The kernel-doc parser cannot parse 'struct __packed mtk_mfg_opp_entry {'.
Move __packed to the closing brace, which is the more common kernel style.

Assisted-by: Opencode:Big-pickle
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Ulf Hansson <ulfh@kernel.org>
This commit is contained in:
Rosen Penev 2026-05-28 13:24:55 -07:00 committed by Ulf Hansson
parent b3677645c7
commit e46d95f060

View File

@ -236,14 +236,14 @@ struct __packed mtk_mfg_ipi_sleep_msg {
*
* This struct is part of the ABI with the EB firmware. Do not change it.
*/
struct __packed mtk_mfg_opp_entry {
struct mtk_mfg_opp_entry {
__le32 freq_khz;
__le32 voltage_core;
__le32 voltage_sram;
__le32 posdiv;
__le32 voltage_margin;
__le32 power_mw;
};
} __packed;
struct mtk_mfg_mbox {
struct mbox_client cl;