Re:Re: [PATCH] drm/mediatek: remove unnecessary conversion to bool

Bernard bernard at vivo.com
Tue Jun 16 02:16:40 UTC 2020



发件人:Chun-Kuang Hu <chunkuang.hu at kernel.org>
发送日期:2020-06-15 22:00:52
收件人:Joe Perches <joe at perches.com>
抄送人:Bernard Zhao <bernard at vivo.com>,Chun-Kuang Hu <chunkuang.hu at kernel.org>,Philipp Zabel <p.zabel at pengutronix.de>,David Airlie <airlied at linux.ie>,Daniel Vetter <daniel at ffwll.ch>,Matthias Brugger <matthias.bgg at gmail.com>,DRI Development <dri-devel at lists.freedesktop.org>,Linux ARM <linux-arm-kernel at lists.infradead.org>,"moderated list:ARM/Mediatek SoC support" <linux-mediatek at lists.infradead.org>,linux-kernel <linux-kernel at vger.kernel.org>,opensource.kernel at vivo.com
主题:Re: [PATCH] drm/mediatek: remove unnecessary conversion to bool>Joe Perches <joe at perches.com> 於 2020年6月15日 週一 上午4:41寫道:
>>
>> On Fri, 2020-06-12 at 20:40 +0800, Bernard Zhao wrote:
>> > In function mtk_dsi_clk_hs_state, remove unnecessary conversion
>> > to bool return, this change is to make the code a bit readable.
>> []
>> > diff --git a/drivers/gpu/drm/mediatek/mtk_dsi.c b/drivers/gpu/drm/mediatek/mtk_dsi.c
>> []
>> > @@ -319,7 +319,7 @@ static bool mtk_dsi_clk_hs_state(struct mtk_dsi *dsi)
>> >       u32 tmp_reg1;
>> >
>> >       tmp_reg1 = readl(dsi->regs + DSI_PHY_LCCON);
>> > -     return ((tmp_reg1 & LC_HS_TX_EN) == 1) ? true : false;
>> > +     return ((tmp_reg1 & LC_HS_TX_EN) == 1);
>>
>> Given:
>>
>> drivers/gpu/drm/mediatek/mtk_dsi.c:#define LC_HS_TX_EN                  BIT(0)
>>
>> This is likely clearer as
>>
>>         return tmp_reg1 & LC_HS_TX_EN;
>>
>> or even
>>
>> static bool mtk_dsi_clk_hs_state(struct mtk_dsi *dsi)
>> {
>>         return readl(dsi->regs + DSI_PHY_LCCON) & LC_HS_TX_EN;
>> }
>
>I like the second one.

Hi:

This modification is clear and easy to understand.
I will update the patch and resubmit.
Thanks!

BR//Bernard

>>
>>
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel at lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/dri-devel




More information about the dri-devel mailing list