Message ID | 20191127165428.19662-1-matthias.bgg@gmail.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 47b6b604b2bf396e110e7c2e074fef459bf07b4f |
Headers | show |
Series | soc: mediatek: cmdq: fixup wrong input order of write api | expand |
Hello: This patch was applied to soc/soc.git (refs/heads/arm/fixes). On Wed, 27 Nov 2019 17:54:28 +0100 you wrote: > From: Bibby Hsieh <bibby.hsieh@mediatek.com> > > Fixup a issue was caused by the previous fixup patch. > > Fixes: 1a92f989126e ("soc: mediatek: cmdq: reorder the parameter") > > Cc: <stable@vger.kernel.org> > Signed-off-by: Bibby Hsieh <bibby.hsieh@mediatek.com> > Reviewed-by: CK Hu <ck.hu@mediatek.com> > Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com> > > [...] Here is a summary with links: - soc: mediatek: cmdq: fixup wrong input order of write api https://git.kernel.org/soc/soc/c/47b6b604b2bf396e110e7c2e074fef459bf07b4f You are awesome, thank you!
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; }