From: Daniel Baluta <daniel.baluta@oss.nxp.com>
To: Alexander Stein <alexander.stein@ew.tq-group.com>,
Abel Vesa <abelvesa@kernel.org>, Peng Fan <peng.fan@nxp.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Frank Li <Frank.Li@nxp.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>
Cc: linux-clk@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/1] clk: imx: pll14xx: Use unsigned format specifier
Date: Tue, 17 Mar 2026 11:48:00 +0200 [thread overview]
Message-ID: <b3d4e63b-1fb5-4db3-a5eb-b0287fda3a02@oss.nxp.com> (raw)
In-Reply-To: <20260317093353.964097-1-alexander.stein@ew.tq-group.com>
On 3/17/26 11:33, Alexander Stein wrote:
> The debug outputs use %d for clock rates resulting in negative clock rate
> during rate calculation.
>
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> drivers/clk/imx/clk-pll14xx.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
> index 7552aaafc3395..701a7a02235cc 100644
> --- a/drivers/clk/imx/clk-pll14xx.c
> +++ b/drivers/clk/imx/clk-pll14xx.c
> @@ -151,7 +151,7 @@ static void imx_pll14xx_calc_settings(struct clk_pll14xx *pll, unsigned long rat
> /* First try if we can get the desired rate from one of the static entries */
> tt = imx_get_pll_settings(pll, rate);
> if (tt) {
> - pr_debug("%s: in=%ld, want=%ld, Using PLL setting from table\n",
> + pr_debug("%s: in=%lu, want=%lu, Using PLL setting from table\n",
> clk_hw_get_name(&pll->hw), prate, rate);
> t->rate = tt->rate;
> t->mdiv = tt->mdiv;
> @@ -173,7 +173,7 @@ static void imx_pll14xx_calc_settings(struct clk_pll14xx *pll, unsigned long rat
>
> if (rate >= rate_min && rate <= rate_max) {
> kdiv = pll1443x_calc_kdiv(mdiv, pdiv, sdiv, rate, prate);
> - pr_debug("%s: in=%ld, want=%ld Only adjust kdiv %ld -> %d\n",
> + pr_debug("%s: in=%lu, want=%lu Only adjust kdiv %ld -> %d\n",
> clk_hw_get_name(&pll->hw), prate, rate,
> FIELD_GET(KDIV_MASK, pll_div_ctl1), kdiv);
> fout = pll14xx_calc_rate(pll, mdiv, pdiv, sdiv, kdiv, prate);
> @@ -211,7 +211,7 @@ static void imx_pll14xx_calc_settings(struct clk_pll14xx *pll, unsigned long rat
> }
> }
> found:
> - pr_debug("%s: in=%ld, want=%ld got=%d (pdiv=%d sdiv=%d mdiv=%d kdiv=%d)\n",
> + pr_debug("%s: in=%ld, want=%lu got=%u (pdiv=%d sdiv=%d mdiv=%d kdiv=%d)\n",
Since you are here, I think this should be 'got = %lu' instead of %u.
next prev parent reply other threads:[~2026-03-17 9:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-17 9:33 [PATCH 1/1] clk: imx: pll14xx: Use unsigned format specifier Alexander Stein
2026-03-17 9:48 ` Daniel Baluta [this message]
2026-03-17 10:13 ` Daniel Baluta
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=b3d4e63b-1fb5-4db3-a5eb-b0287fda3a02@oss.nxp.com \
--to=daniel.baluta@oss.nxp.com \
--cc=Frank.Li@nxp.com \
--cc=abelvesa@kernel.org \
--cc=alexander.stein@ew.tq-group.com \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=peng.fan@nxp.com \
--cc=s.hauer@pengutronix.de \
--cc=sboyd@kernel.org \
/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