All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sumit Garg <sumit.garg@kernel.org>
To: Balaji Selvanathan <balaji.selvanathan@oss.qualcomm.com>
Cc: u-boot@lists.denx.de, u-boot-qcom@groups.io,
	Lukasz Majewski <lukma@denx.de>, Tom Rini <trini@konsulko.com>,
	Casey Connolly <casey.connolly@linaro.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	David Wronek <david.wronek@mainlining.org>,
	Jens Reidel <adrian@mainlining.org>,
	Luca Weiss <luca.weiss@fairphone.com>,
	Swathi Tamilselvan <swathi.tamilselvan@oss.qualcomm.com>,
	Aswin Murugan <aswin.murugan@oss.qualcomm.com>,
	Bhupesh Sharma <bhupesh.linux@gmail.com>,
	Neha Malcom Francis <n-francis@ti.com>,
	Julien Stephan <jstephan@baylibre.com>,
	Marek Vasut <marek.vasut+renesas@mailbox.org>
Subject: Re: [PATCH v2 1/7] clk: stub: Sort compatible strings alphabetically
Date: Fri, 1 May 2026 13:08:19 +0530	[thread overview]
Message-ID: <afRYaxij2x-CJbay@sumit-xelite> (raw)
In-Reply-To: <20260427-ufs_clk-v2-1-36e10a7c0ef6@oss.qualcomm.com>

On Mon, Apr 27, 2026 at 02:56:05PM +0530, Balaji Selvanathan wrote:
> Reorder compatible strings in stub_clk_ids to maintain alphabetical
> order for easier maintenance.
> 
> Signed-off-by: Balaji Selvanathan <balaji.selvanathan@oss.qualcomm.com>
> ---
> Changes in v2:
> - Newly added in v2
> ---
>  drivers/clk/clk-stub.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Sumit Garg <sumit.garg@oss.qualcomm.com>

-Sumit

> 
> diff --git a/drivers/clk/clk-stub.c b/drivers/clk/clk-stub.c
> index 117266ac778..ddcaaa00d91 100644
> --- a/drivers/clk/clk-stub.c
> +++ b/drivers/clk/clk-stub.c
> @@ -50,10 +50,10 @@ static struct clk_ops stub_clk_ops = {
>  
>  static const struct udevice_id stub_clk_ids[] = {
>  	{ .compatible = "qcom,rpmcc" },
> -	{ .compatible = "qcom,sdm670-rpmh-clk" },
> -	{ .compatible = "qcom,sdm845-rpmh-clk" },
>  	{ .compatible = "qcom,sc7180-rpmh-clk" },
>  	{ .compatible = "qcom,sc7280-rpmh-clk" },
> +	{ .compatible = "qcom,sdm670-rpmh-clk" },
> +	{ .compatible = "qcom,sdm845-rpmh-clk" },
>  	{ .compatible = "qcom,sm6350-rpmh-clk" },
>  	{ .compatible = "qcom,sm8150-rpmh-clk" },
>  	{ .compatible = "qcom,sm8250-rpmh-clk" },
> 
> -- 
> 2.34.1
> 

  reply	other threads:[~2026-05-01  7:38 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-27  9:26 [PATCH v2 0/7] Add UFS clock support for Qualcomm SoCs Balaji Selvanathan
2026-04-27  9:26 ` [PATCH v2 1/7] clk: stub: Sort compatible strings alphabetically Balaji Selvanathan
2026-05-01  7:38   ` Sumit Garg [this message]
2026-04-27  9:26 ` [PATCH v2 2/7] clk: qcom: clk-stub: Add compatibles for QCS615/SA8775P Balaji Selvanathan
2026-05-01  7:39   ` Sumit Garg
2026-04-27  9:26 ` [PATCH v2 3/7] clk: qcom: sa8775p: Add UFS clock support Balaji Selvanathan
2026-04-27  9:26 ` [PATCH v2 4/7] clk: qcom: qcs615: " Balaji Selvanathan
2026-04-27  9:26 ` [PATCH v2 5/7] clk: qcom: sc7280: " Balaji Selvanathan
2026-04-27  9:26 ` [PATCH v2 6/7] drivers: ufs: qcom: Initialize and enable clocks before hardware access Balaji Selvanathan
2026-05-01  7:43   ` Sumit Garg
2026-05-04 11:07   ` Neha Malcom Francis
2026-05-05 12:58     ` Casey Connolly
2026-04-27  9:26 ` [PATCH v2 7/7] ufs: qcom: Remove redundant POST_CHANGE clock setup call Balaji Selvanathan
2026-05-01  7:47   ` Sumit Garg
2026-05-04 11:07   ` Neha Malcom Francis
2026-05-05 13:01 ` [PATCH v2 0/7] Add UFS clock support for Qualcomm SoCs Casey Connolly
2026-05-05 14:14 ` Casey Connolly
2026-05-22  6:58 ` Neha Malcom Francis

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=afRYaxij2x-CJbay@sumit-xelite \
    --to=sumit.garg@kernel.org \
    --cc=adrian@mainlining.org \
    --cc=aswin.murugan@oss.qualcomm.com \
    --cc=balaji.selvanathan@oss.qualcomm.com \
    --cc=bhupesh.linux@gmail.com \
    --cc=casey.connolly@linaro.org \
    --cc=david.wronek@mainlining.org \
    --cc=jstephan@baylibre.com \
    --cc=luca.weiss@fairphone.com \
    --cc=lukma@denx.de \
    --cc=marek.vasut+renesas@mailbox.org \
    --cc=n-francis@ti.com \
    --cc=neil.armstrong@linaro.org \
    --cc=swathi.tamilselvan@oss.qualcomm.com \
    --cc=trini@konsulko.com \
    --cc=u-boot-qcom@groups.io \
    --cc=u-boot@lists.denx.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.