diff options
author | Bibby Hsieh <[email protected]> | 2019-11-27 17:54:28 +0100 |
---|---|---|
committer | Olof Johansson <[email protected]> | 2019-12-05 10:10:58 -0800 |
commit | 47b6b604b2bf396e110e7c2e074fef459bf07b4f (patch) | |
tree | 9fa8f21d78089af55c285ce1c3abd5765fb06cb5 | |
parent | a4e55ccd4392e70f296d12e81b93c6ca96ee21d5 (diff) |
soc: mediatek: cmdq: fixup wrong input order of write api
Fixup a issue was caused by the previous fixup patch.
Fixes: 1a92f989126e ("soc: mediatek: cmdq: reorder the parameter")
Link: https://lore.kernel.org/r/[email protected]
Cc: <[email protected]>
Signed-off-by: Bibby Hsieh <[email protected]>
Reviewed-by: CK Hu <[email protected]>
Signed-off-by: Matthias Brugger <[email protected]>
Signed-off-by: Olof Johansson <[email protected]>
-rw-r--r-- | drivers/soc/mediatek/mtk-cmdq-helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/mediatek/mtk-cmdq-helper.c b/drivers/soc/mediatek/mtk-cmdq-helper.c index 7aa0517ff2f3..3c82de5f9417 100644 --- a/drivers/soc/mediatek/mtk-cmdq-helper.c +++ b/drivers/soc/mediatek/mtk-cmdq-helper.c @@ -155,7 +155,7 @@ int cmdq_pkt_write_mask(struct cmdq_pkt *pkt, u8 subsys, err = cmdq_pkt_append_command(pkt, CMDQ_CODE_MASK, 0, ~mask); offset_mask |= CMDQ_WRITE_ENABLE_MASK; } - err |= cmdq_pkt_write(pkt, value, subsys, offset_mask); + err |= cmdq_pkt_write(pkt, subsys, offset_mask, value); return err; } |