All of lore.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Johan Hovold <johan@kernel.org>
Cc: Johan Hovold <johan+linaro@kernel.org>,
	Vinod Koul <vkoul@kernel.org>, Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Andy Gross <agross@kernel.org>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Kishon Vijay Abraham I <kishon@ti.com>,
	linux-arm-msm@vger.kernel.org, linux-phy@lists.infradead.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 06/43] dt-bindings: phy: qcom,qmp: split out msm8996-qmp-pcie-phy
Date: Tue, 5 Jul 2022 12:23:07 +0200	[thread overview]
Message-ID: <1053b27f-37f8-a94d-2868-1e2b200d822a@linaro.org> (raw)
In-Reply-To: <YsQQfwqmiQ7O3FdY@hovoldconsulting.com>

On 05/07/2022 12:20, Johan Hovold wrote:
> On Tue, Jul 05, 2022 at 12:08:36PM +0200, Krzysztof Kozlowski wrote:
>> On 05/07/2022 11:42, Johan Hovold wrote:
>>> The QMP PHY DT schema is getting unwieldy. Break out the odd-bird
>>> msm8996-qmp-pcie-phy which is the only QMP PHY that uses separate
>>> "per-lane" nodes.
>>>
>>> Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
>>> ---
>>>  .../phy/qcom,msm8996-qmp-pcie-phy.yaml        | 114 ++++++++++++++++++
>>>  .../devicetree/bindings/phy/qcom,qmp-phy.yaml |  32 -----
>>>  2 files changed, 114 insertions(+), 32 deletions(-)
>>>  create mode 100644 Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml
>>>
>>> diff --git a/Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml b/Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml
>>> new file mode 100644
>>> index 000000000000..14fd86fd91ec
>>> --- /dev/null
>>> +++ b/Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml
>>> @@ -0,0 +1,114 @@
>>> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
>>> +
>>
>> No line break
>>
>>> +%YAML 1.2
>>> +---
>>> +$id: "http://devicetree.org/schemas/phy/qcom,msm8996-qmp-pcie-phy.yaml#"
>>> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
>>
>> Drop the quotes from two above.
> 
> This comes from the current binding. I can clean that one up first.

You now selectively copy pieces from old binding into new one. Copy
while correcting obvious issues.

> 
>>> +
>>> +title: Qualcomm QMP PHY controller (MSM8996 PCIe)
>>> +
>>> +maintainers:
>>> +  - Vinod Koul <vkoul@kernel.org>
>>> +
>>> +description:
>>> +  QMP PHY controller supports physical layer functionality for a number of
>>> +  controllers on Qualcomm chipsets, such as, PCIe, UFS, and USB.
>>> +
>>> +properties:
>>> +  compatible:
>>> +    const: qcom,msm8996-qmp-pcie-phy
>>> +
>>> +  reg:
>>> +    minItems: 1
>>> +    items:
>>> +      - description: Address and length of PHY's common serdes block.
>>> +      - description: Address and length of PHY's DP_COM control block.
>>
>> Are two reg items applicable here?
> 
> No, but see below.
> 
>>> +
>>> +  "#address-cells":
>>> +    enum: [ 1, 2 ]
>>> +
>>> +  "#size-cells":
>>> +    enum: [ 1, 2 ]
>>> +
>>> +  ranges: true
>>> +
>>> +  clocks:
>>> +    minItems: 1
>>> +    maxItems: 4
>>
>> Define clocks here, not in allOf:if:then.
> 
> To remain sane, and to help reviewers, I decided not to do changes to
> the binding while splitting it up which would only make them harder
> to review.
> 
> Hence the split followed by cleanup/tightening of constraints.

It's confusing. I look at this commit and it is not correct. How do I
know that next commits will correct it? I responded in further patches
that most of them they should be squashed with this copy.

> 
>> How about an example?
> 
> That's also a new addition to the binding and goes in a later separate
> patch.
> 



Best regards,
Krzysztof

WARNING: multiple messages have this Message-ID (diff)
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Johan Hovold <johan@kernel.org>
Cc: Johan Hovold <johan+linaro@kernel.org>,
	Vinod Koul <vkoul@kernel.org>, Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Andy Gross <agross@kernel.org>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Kishon Vijay Abraham I <kishon@ti.com>,
	linux-arm-msm@vger.kernel.org, linux-phy@lists.infradead.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 06/43] dt-bindings: phy: qcom,qmp: split out msm8996-qmp-pcie-phy
Date: Tue, 5 Jul 2022 12:23:07 +0200	[thread overview]
Message-ID: <1053b27f-37f8-a94d-2868-1e2b200d822a@linaro.org> (raw)
In-Reply-To: <YsQQfwqmiQ7O3FdY@hovoldconsulting.com>

On 05/07/2022 12:20, Johan Hovold wrote:
> On Tue, Jul 05, 2022 at 12:08:36PM +0200, Krzysztof Kozlowski wrote:
>> On 05/07/2022 11:42, Johan Hovold wrote:
>>> The QMP PHY DT schema is getting unwieldy. Break out the odd-bird
>>> msm8996-qmp-pcie-phy which is the only QMP PHY that uses separate
>>> "per-lane" nodes.
>>>
>>> Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
>>> ---
>>>  .../phy/qcom,msm8996-qmp-pcie-phy.yaml        | 114 ++++++++++++++++++
>>>  .../devicetree/bindings/phy/qcom,qmp-phy.yaml |  32 -----
>>>  2 files changed, 114 insertions(+), 32 deletions(-)
>>>  create mode 100644 Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml
>>>
>>> diff --git a/Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml b/Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml
>>> new file mode 100644
>>> index 000000000000..14fd86fd91ec
>>> --- /dev/null
>>> +++ b/Documentation/devicetree/bindings/phy/qcom,msm8996-qmp-pcie-phy.yaml
>>> @@ -0,0 +1,114 @@
>>> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
>>> +
>>
>> No line break
>>
>>> +%YAML 1.2
>>> +---
>>> +$id: "http://devicetree.org/schemas/phy/qcom,msm8996-qmp-pcie-phy.yaml#"
>>> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
>>
>> Drop the quotes from two above.
> 
> This comes from the current binding. I can clean that one up first.

You now selectively copy pieces from old binding into new one. Copy
while correcting obvious issues.

> 
>>> +
>>> +title: Qualcomm QMP PHY controller (MSM8996 PCIe)
>>> +
>>> +maintainers:
>>> +  - Vinod Koul <vkoul@kernel.org>
>>> +
>>> +description:
>>> +  QMP PHY controller supports physical layer functionality for a number of
>>> +  controllers on Qualcomm chipsets, such as, PCIe, UFS, and USB.
>>> +
>>> +properties:
>>> +  compatible:
>>> +    const: qcom,msm8996-qmp-pcie-phy
>>> +
>>> +  reg:
>>> +    minItems: 1
>>> +    items:
>>> +      - description: Address and length of PHY's common serdes block.
>>> +      - description: Address and length of PHY's DP_COM control block.
>>
>> Are two reg items applicable here?
> 
> No, but see below.
> 
>>> +
>>> +  "#address-cells":
>>> +    enum: [ 1, 2 ]
>>> +
>>> +  "#size-cells":
>>> +    enum: [ 1, 2 ]
>>> +
>>> +  ranges: true
>>> +
>>> +  clocks:
>>> +    minItems: 1
>>> +    maxItems: 4
>>
>> Define clocks here, not in allOf:if:then.
> 
> To remain sane, and to help reviewers, I decided not to do changes to
> the binding while splitting it up which would only make them harder
> to review.
> 
> Hence the split followed by cleanup/tightening of constraints.

It's confusing. I look at this commit and it is not correct. How do I
know that next commits will correct it? I responded in further patches
that most of them they should be squashed with this copy.

> 
>> How about an example?
> 
> That's also a new addition to the binding and goes in a later separate
> patch.
> 



Best regards,
Krzysztof

-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

  reply	other threads:[~2022-07-05 10:23 UTC|newest]

Thread overview: 178+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-05  9:41 [PATCH 00/43] phy: qcom,qmp: fix dt-bindings and deprecate lane suffix Johan Hovold
2022-07-05  9:41 ` Johan Hovold
2022-07-05  9:41 ` [PATCH 01/43] dt-bindings: phy: qcom,qmp: fix bogus clock-cells property Johan Hovold
2022-07-05  9:41   ` Johan Hovold
2022-07-05 10:01   ` Krzysztof Kozlowski
2022-07-05 10:01     ` Krzysztof Kozlowski
2022-07-05  9:41 ` [PATCH 02/43] dt-bindings: phy: qcom,qmp: sort compatible strings Johan Hovold
2022-07-05  9:41   ` Johan Hovold
2022-07-05 10:02   ` Krzysztof Kozlowski
2022-07-05 10:02     ` Krzysztof Kozlowski
2022-07-05  9:41 ` [PATCH 03/43] dt-bindings: phy: qcom,qmp: clean up descriptions Johan Hovold
2022-07-05  9:41   ` Johan Hovold
2022-07-05 10:02   ` Krzysztof Kozlowski
2022-07-05 10:02     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 04/43] dt-bindings: phy: qcom,qmp: clean up example Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:03   ` Krzysztof Kozlowski
2022-07-05 10:03     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 05/43] dt-bindings: phy: qcom,qmp: drop child-node comment Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:03   ` Krzysztof Kozlowski
2022-07-05 10:03     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 06/43] dt-bindings: phy: qcom,qmp: split out msm8996-qmp-pcie-phy Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:08   ` Krzysztof Kozlowski
2022-07-05 10:08     ` Krzysztof Kozlowski
2022-07-05 10:20     ` Johan Hovold
2022-07-05 10:20       ` Johan Hovold
2022-07-05 10:23       ` Krzysztof Kozlowski [this message]
2022-07-05 10:23         ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 07/43] dt-bindings: phy: qcom,msm8996-qmp-pcie: clean up constraints Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:09   ` Krzysztof Kozlowski
2022-07-05 10:09     ` Krzysztof Kozlowski
2022-07-05 10:21     ` Johan Hovold
2022-07-05 10:21       ` Johan Hovold
2022-07-05 10:23       ` Krzysztof Kozlowski
2022-07-05 10:23         ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 08/43] dt-bindings: phy: qcom,msm8996-qmp-pcie: add missing child node schema Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:10   ` Krzysztof Kozlowski
2022-07-05 10:10     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 09/43] dt-bindings: phy: qcom,msm8996-qmp-pcie: add example node Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:10   ` Krzysztof Kozlowski
2022-07-05 10:10     ` Krzysztof Kozlowski
2022-07-05 10:22     ` Johan Hovold
2022-07-05 10:22       ` Johan Hovold
2022-07-05 11:32       ` Krzysztof Kozlowski
2022-07-05 11:32         ` Krzysztof Kozlowski
2022-07-05 12:00         ` Johan Hovold
2022-07-05 12:00           ` Johan Hovold
2022-07-05  9:42 ` [PATCH 10/43] dt-bindings: phy: qcom,msm8996-qmp-pcie: deprecate PIPE clock names Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:10   ` Krzysztof Kozlowski
2022-07-05 10:10     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 11/43] dt-bindings: phy: qcom,msm8996-qmp-pcie: deprecate reset names Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:12   ` Krzysztof Kozlowski
2022-07-05 10:12     ` Krzysztof Kozlowski
2022-07-05 12:14     ` Johan Hovold
2022-07-05 12:14       ` Johan Hovold
2022-07-05  9:42 ` [PATCH 12/43] dt-bindings: phy: qcom,qmp: split out PCIe PHY binding Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:13   ` Krzysztof Kozlowski
2022-07-05 10:13     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 13/43] dt-bindings: phy: qcom,qmp-pcie: clean up register constraints Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:13   ` Krzysztof Kozlowski
2022-07-05 10:13     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 14/43] dt-bindings: phy: qcom,qmp-pcie: clean up clock constraints Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:14   ` Krzysztof Kozlowski
2022-07-05 10:14     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 15/43] dt-bindings: phy: qcom,qmp-pcie: clean up reset constraints Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:14   ` Krzysztof Kozlowski
2022-07-05 10:14     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 16/43] dt-bindings: phy: qcom,qmp-pcie: drop unused vddp-ref-clk supply Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:16   ` Krzysztof Kozlowski
2022-07-05 10:16     ` Krzysztof Kozlowski
2022-07-05 11:46     ` Johan Hovold
2022-07-05 11:46       ` Johan Hovold
2022-07-05 11:59       ` Krzysztof Kozlowski
2022-07-05 11:59         ` Krzysztof Kozlowski
2022-07-05 12:43         ` Johan Hovold
2022-07-05 12:43           ` Johan Hovold
2022-07-05 18:13           ` Krzysztof Kozlowski
2022-07-05 18:13             ` Krzysztof Kozlowski
2022-07-06  6:03             ` Johan Hovold
2022-07-06  6:03               ` Johan Hovold
2022-07-05  9:42 ` [PATCH 17/43] dt-bindings: phy: qcom,qmp-pcie: add missing child node schema Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:18   ` Krzysztof Kozlowski
2022-07-05 10:18     ` Krzysztof Kozlowski
2022-07-05 11:51     ` Johan Hovold
2022-07-05 11:51       ` Johan Hovold
2022-07-05 11:56       ` Krzysztof Kozlowski
2022-07-05 11:56         ` Krzysztof Kozlowski
2022-07-05 12:11         ` Johan Hovold
2022-07-05 12:11           ` Johan Hovold
2022-07-05 18:21           ` Krzysztof Kozlowski
2022-07-05 18:21             ` Krzysztof Kozlowski
2022-07-06  6:06             ` Johan Hovold
2022-07-06  6:06               ` Johan Hovold
2022-07-05 14:14   ` Rob Herring
2022-07-05 14:14     ` Rob Herring
2022-07-05  9:42 ` [PATCH 18/43] dt-bindings: phy: qcom,qmp-pcie: add example node Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:18   ` Krzysztof Kozlowski
2022-07-05 10:18     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 19/43] dt-bindings: phy: qcom,qmp-pcie: deprecate PIPE clock name Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 20/43] dt-bindings: phy: qcom,qmp: split out UFS PHY binding Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:19   ` Krzysztof Kozlowski
2022-07-05 10:19     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 21/43] dt-bindings: phy: qcom,qmp-ufs: clean up supplies Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 22/43] dt-bindings: phy: qcom,qmp-ufs: clean up reset providers Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 23/43] dt-bindings: phy: qcom,qmp-ufs: clean up clock constraints Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 24/43] dt-bindings: phy: qcom,qmp-ufs: clean up register constraints Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 25/43] dt-bindings: phy: qcom,qmp-ufs: add missing SM8450 clock Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 26/43] dt-bindings: phy: qcom,qmp-ufs: add missing SM8150 power domain Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 27/43] dt-bindings: phy: qcom,qmp-ufs: add missing child node schema Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 28/43] dt-bindings: phy: qcom,qmp-ufs: add example node Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 29/43] dt-bindings: phy: qcom,qmp: split out USB binding Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 30/43] dt-bindings: phy: qcom,qmp-usb: clean up clock constraints Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 31/43] dt-bindings: phy: qcom,qmp-usb: clean up supplies Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 32/43] dt-bindings: phy: qcom,qmp-usb: drop unused vddp-ref-clk supply Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 33/43] dt-bindings: phy: qcom,qmp-usb: clean up reset providers Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 34/43] dt-bindings: phy: qcom,qmp-usb: add missing child node schema Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 35/43] dt-bindings: phy: qcom,qmp-usb: deprecate PIPE clock name Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 36/43] dt-bindings: phy: qcom,qmp-usb3-dp: fix bogus clock-cells property Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 37/43] dt-bindings: phy: qcom,qmp-usb3-dp: deprecate USB PIPE clock name Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 38/43] phy: qcom-qmp-pcie: drop pipe clock lane suffix Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:20   ` Krzysztof Kozlowski
2022-07-05 10:20     ` Krzysztof Kozlowski
2022-07-05 11:13     ` Dmitry Baryshkov
2022-07-05 11:13       ` Dmitry Baryshkov
2022-07-05 11:58       ` Johan Hovold
2022-07-05 11:58         ` Johan Hovold
2022-07-05 12:06         ` Krzysztof Kozlowski
2022-07-05 12:06           ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 39/43] phy: qcom-qmp-combo: drop unused lane reset Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 11:10   ` Dmitry Baryshkov
2022-07-05 11:10     ` Dmitry Baryshkov
2022-07-05  9:42 ` [PATCH 40/43] phy: qcom-qmp-combo: drop pipe clock lane suffix Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:20   ` Krzysztof Kozlowski
2022-07-05 10:20     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 41/43] phy: qcom-qmp-pcie-msm8996: " Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05  9:42 ` [PATCH 42/43] phy: qcom-qmp-pcie-msm8996: drop reset " Johan Hovold
2022-07-05  9:42   ` Johan Hovold
2022-07-05 10:21   ` Krzysztof Kozlowski
2022-07-05 10:21     ` Krzysztof Kozlowski
2022-07-05  9:42 ` [PATCH 43/43] phy: qcom-qmp-usb: drop pipe clock " Johan Hovold
2022-07-05  9:42   ` Johan Hovold

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=1053b27f-37f8-a94d-2868-1e2b200d822a@linaro.org \
    --to=krzysztof.kozlowski@linaro.org \
    --cc=agross@kernel.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=johan+linaro@kernel.org \
    --cc=johan@kernel.org \
    --cc=kishon@ti.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-phy@lists.infradead.org \
    --cc=robh+dt@kernel.org \
    --cc=vkoul@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 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.