public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>,
	andersson@kernel.org, konradybcio@kernel.org, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org
Cc: richardcochran@gmail.com, geert+renesas@glider.be, arnd@arndb.de,
	dmitry.baryshkov@oss.qualcomm.com, ebiggers@kernel.org,
	michal.simek@amd.com, luca.weiss@fairphone.com, sven@kernel.org,
	prabhakar.mahadev-lad.rj@bp.renesas.com,
	kuninori.morimoto.gx@renesas.com, linux-arm-msm@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	netdev@vger.kernel.org, m.facchin@arduino.cc, r.mereu@arduino.cc,
	loic.poulain@oss.qualcomm.com
Subject: Re: [PATCH 4/7] arm64: dts: qcom: Add Arduino Monza (VENTUNOQ) board support
Date: Mon, 9 Mar 2026 16:52:07 +0100	[thread overview]
Message-ID: <46c10f63-0915-4d7b-934b-8293a7230efb@kernel.org> (raw)
In-Reply-To: <20260309152420.1404349-5-srinivas.kandagatla@oss.qualcomm.com>

On 09/03/2026 16:24, Srinivas Kandagatla wrote:
> +		};
> +	};
> +
> +
> +	vdc_3v3: regulator-vdc-3v3 {
> +		compatible = "regulator-fixed";
> +		regulator-name = "vdc_3v3";
> +		regulator-min-microvolt = <3300000>;
> +		regulator-max-microvolt = <3300000>;
> +	};
> +
> +	vdc_1v8: regulator-vdc-1v8 {
> +		compatible = "regulator-fixed";
> +		regulator-name = "vdc_1v8";
> +		regulator-min-microvolt = <1800000>;
> +		regulator-max-microvolt = <1800000>;
> +	};
> +
> +	vdc_5v: vdc-5v {
> +		compatible = "regulator-fixed";
> +		regulator-name = "vdc_5v";
> +		regulator-min-microvolt = <5000000>;
> +		regulator-max-microvolt = <5000000>;
> +		gpio = <&tlmm 49 GPIO_ACTIVE_HIGH>;
> +		enable-active-high;
> +		regulator-always-on;
> +		startup-delay-us = <20000>;
> +	};
> +
> +	vreg_nvme: m2-vreg-3p3 {

You have kind of random regulator names. Some are regulators, some are
nothing and some are vregs.

Please use name for all fixed regulators which matches current format
recommendation: 'regulator-[0-9]v[0-9]'

https://web.git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml

Best regards,
Krzysztof

  reply	other threads:[~2026-03-09 15:52 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-09 15:24 [PATCH 0/7] arm64: dts: qcom: Add support for Arduino VENTUNOQ Srinivas Kandagatla
2026-03-09 15:24 ` [PATCH 1/7] arm64: dts: qcom: monaco: Add HS/SS endpoints for USB1 controller Srinivas Kandagatla
2026-03-09 19:24   ` Dmitry Baryshkov
2026-03-09 15:24 ` [PATCH 2/7] arm64: dts: qcom: Add Monaco Monza SoM Srinivas Kandagatla
2026-03-10 10:39   ` Konrad Dybcio
2026-03-11 12:49     ` Srinivas Kandagatla
2026-03-09 15:24 ` [PATCH 3/7] dt-bindings: arm: qcom: add Arduino Monza, VENTUNOQ Srinivas Kandagatla
2026-03-09 15:50   ` Krzysztof Kozlowski
2026-03-09 17:47     ` Srinivas Kandagatla
2026-03-09 15:24 ` [PATCH 4/7] arm64: dts: qcom: Add Arduino Monza (VENTUNOQ) board support Srinivas Kandagatla
2026-03-09 15:52   ` Krzysztof Kozlowski [this message]
2026-03-09 19:37   ` Dmitry Baryshkov
2026-03-13  9:46     ` Srinivas Kandagatla
2026-03-10 10:42   ` Konrad Dybcio
2026-03-10 10:43   ` Konrad Dybcio
2026-03-09 15:24 ` [PATCH 5/7] arm64: dts: qcom: monaco: add dt entry for lpass lpi pinctrl Srinivas Kandagatla
2026-03-10 10:46   ` Konrad Dybcio
2026-03-09 15:24 ` [PATCH 6/7] arm64: dts: qcom: monaco-arduino-monza: Add sound node Srinivas Kandagatla
2026-03-09 19:38   ` Dmitry Baryshkov
2026-03-10  9:25     ` Srinivas Kandagatla
2026-03-10 10:45   ` Konrad Dybcio
2026-03-09 15:24 ` [PATCH 7/7] arm64: defconfig: Enable configs for Arduino VENTUNOQ Srinivas Kandagatla
2026-03-09 19:39   ` Dmitry Baryshkov

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=46c10f63-0915-4d7b-934b-8293a7230efb@kernel.org \
    --to=krzk@kernel.org \
    --cc=andersson@kernel.org \
    --cc=arnd@arndb.de \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.baryshkov@oss.qualcomm.com \
    --cc=ebiggers@kernel.org \
    --cc=geert+renesas@glider.be \
    --cc=konradybcio@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=loic.poulain@oss.qualcomm.com \
    --cc=luca.weiss@fairphone.com \
    --cc=m.facchin@arduino.cc \
    --cc=michal.simek@amd.com \
    --cc=netdev@vger.kernel.org \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
    --cc=r.mereu@arduino.cc \
    --cc=richardcochran@gmail.com \
    --cc=robh@kernel.org \
    --cc=srinivas.kandagatla@oss.qualcomm.com \
    --cc=sven@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