From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: Wolfram Sang <wsa+renesas@sang-engineering.com>,
linux-i2c@vger.kernel.org
Cc: Qii Wang <qii.wang@mediatek.com>,
Andi Shyti <andi.shyti@kernel.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org
Subject: Re: [PATCH] i2c: mt65xx: convert set_speed function to void
Date: Mon, 29 Sep 2025 12:19:20 +0200 [thread overview]
Message-ID: <0b4d16a1-e125-4d99-babc-a08aa6fb9cbf@collabora.com> (raw)
In-Reply-To: <20250925210517.9873-2-wsa+renesas@sang-engineering.com>
Il 25/09/25 23:05, Wolfram Sang ha scritto:
> cppcheck rightfully reports:
> drivers/i2c/busses/i2c-mt65xx.c:1464:6: warning: Condition 'ret' is always false [knownConditionTrueFalse]
>
> Make the function void and simplify the code.
>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> ---
> drivers/i2c/busses/i2c-mt65xx.c | 11 ++---------
> 1 file changed, 2 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-mt65xx.c b/drivers/i2c/busses/i2c-mt65xx.c
> index dee40704825c..aefdbee1f03c 100644
> --- a/drivers/i2c/busses/i2c-mt65xx.c
> +++ b/drivers/i2c/busses/i2c-mt65xx.c
> @@ -868,7 +868,7 @@ static int mtk_i2c_calculate_speed(struct mtk_i2c *i2c, unsigned int clk_src,
> return 0;
> }
>
> -static int mtk_i2c_set_speed(struct mtk_i2c *i2c, unsigned int parent_clk)
> +static void mtk_i2c_set_speed(struct mtk_i2c *i2c, unsigned int parent_clk)
> {
> unsigned int clk_src;
> unsigned int step_cnt;
> @@ -938,9 +938,6 @@ static int mtk_i2c_set_speed(struct mtk_i2c *i2c, unsigned int parent_clk)
>
> break;
> }
> -
> -
> - return 0;
> }
>
> static void i2c_dump_register(struct mtk_i2c *i2c)
> @@ -1460,11 +1457,7 @@ static int mtk_i2c_probe(struct platform_device *pdev)
>
> strscpy(i2c->adap.name, I2C_DRV_NAME, sizeof(i2c->adap.name));
>
> - ret = mtk_i2c_set_speed(i2c, clk_get_rate(i2c->clocks[speed_clk].clk));
> - if (ret) {
> - dev_err(&pdev->dev, "Failed to set the speed.\n");
> - return -EINVAL;
> - }
> + mtk_i2c_set_speed(i2c, clk_get_rate(i2c->clocks[speed_clk].clk));
>
> if (i2c->dev_comp->max_dma_support > 32) {
> ret = dma_set_mask(&pdev->dev,
next prev parent reply other threads:[~2025-09-29 10:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-25 21:05 [PATCH] i2c: mt65xx: convert set_speed function to void Wolfram Sang
2025-09-29 10:19 ` AngeloGioacchino Del Regno [this message]
2025-10-04 16:46 ` Wolfram Sang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0b4d16a1-e125-4d99-babc-a08aa6fb9cbf@collabora.com \
--to=angelogioacchino.delregno@collabora.com \
--cc=andi.shyti@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=qii.wang@mediatek.com \
--cc=wsa+renesas@sang-engineering.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).