linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: Renamed hte directory to timestamp
@ 2022-05-12 17:50 Dipen Patel
  2022-05-13 20:53 ` Linus Walleij
  2022-05-18  0:35 ` Rob Herring
  0 siblings, 2 replies; 5+ messages in thread
From: Dipen Patel @ 2022-05-12 17:50 UTC (permalink / raw)
  To: thierry.reding, linux-kernel, linux-tegra, linus.walleij,
	devicetree, robh+dt
  Cc: Dipen Patel

Renamed hte dt binding directory to timestamp according review comment.
Addressed minor comment about having HTE acronym first in the common dt
binding document.

The change reflects above renaming in MAINTAINERS files too.

Signed-off-by: Dipen Patel <dipenp@nvidia.com>
---
This patch is on top of old series (Intro to Hardware timestamping
engine V6) present in linux-next tentatively in preparation for
merge.

 .../{hte => timestamp}/hardware-timestamps-common.yaml      | 6 +++---
 .../bindings/{hte => timestamp}/hte-consumer.yaml           | 0
 .../bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml    | 0
 MAINTAINERS                                                 | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
 rename Documentation/devicetree/bindings/{hte => timestamp}/hardware-timestamps-common.yaml (71%)
 rename Documentation/devicetree/bindings/{hte => timestamp}/hte-consumer.yaml (100%)
 rename Documentation/devicetree/bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml (100%)

diff --git a/Documentation/devicetree/bindings/hte/hardware-timestamps-common.yaml b/Documentation/devicetree/bindings/timestamp/hardware-timestamps-common.yaml
similarity index 71%
rename from Documentation/devicetree/bindings/hte/hardware-timestamps-common.yaml
rename to Documentation/devicetree/bindings/timestamp/hardware-timestamps-common.yaml
index 3e26de605f08..4c25ba248a72 100644
--- a/Documentation/devicetree/bindings/hte/hardware-timestamps-common.yaml
+++ b/Documentation/devicetree/bindings/timestamp/hardware-timestamps-common.yaml
@@ -10,9 +10,9 @@ maintainers:
   - Dipen Patel <dipenp@nvidia.com>
 
 description:
-  Some devices/SoCs have hardware time stamping engines which can use hardware
-  means to timestamp entity in realtime. The entity could be anything from
-  GPIOs, IRQs, Bus and so on. The hardware timestamp engine (HTE) present
+  Some devices/SoCs have hardware timestamp engines (HTE) which can use
+  hardware means to timestamp entity in realtime. The entity could be anything
+  from GPIOs, IRQs, Bus and so on. The hardware timestamp engine present
   itself as a provider with the bindings described in this document.
 
 properties:
diff --git a/Documentation/devicetree/bindings/hte/hte-consumer.yaml b/Documentation/devicetree/bindings/timestamp/hte-consumer.yaml
similarity index 100%
rename from Documentation/devicetree/bindings/hte/hte-consumer.yaml
rename to Documentation/devicetree/bindings/timestamp/hte-consumer.yaml
diff --git a/Documentation/devicetree/bindings/hte/nvidia,tegra194-hte.yaml b/Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml
similarity index 100%
rename from Documentation/devicetree/bindings/hte/nvidia,tegra194-hte.yaml
rename to Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml
diff --git a/MAINTAINERS b/MAINTAINERS
index 4e1e6dbb1ad8..74a61ea4beef 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9057,7 +9057,7 @@ F:	drivers/input/touchscreen/htcpen.c
 HTE SUBSYSTEM
 M:	Dipen Patel <dipenp@nvidia.com>
 S:	Maintained
-F:	Documentation/devicetree/bindings/hte/
+F:	Documentation/devicetree/bindings/timestamp/
 F:	Documentation/hte/
 F:	drivers/hte/
 F:	include/linux/hte.h

base-commit: 6107040c99d5dfc920721c198d45ed2d639b113a
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] dt-bindings: Renamed hte directory to timestamp
  2022-05-12 17:50 [PATCH] dt-bindings: Renamed hte directory to timestamp Dipen Patel
@ 2022-05-13 20:53 ` Linus Walleij
  2022-05-18  0:35 ` Rob Herring
  1 sibling, 0 replies; 5+ messages in thread
From: Linus Walleij @ 2022-05-13 20:53 UTC (permalink / raw)
  To: Dipen Patel
  Cc: thierry.reding, linux-kernel, linux-tegra, devicetree, robh+dt

On Thu, May 12, 2022 at 7:50 PM Dipen Patel <dipenp@nvidia.com> wrote:

> Renamed hte dt binding directory to timestamp according review comment.
> Addressed minor comment about having HTE acronym first in the common dt
> binding document.
>
> The change reflects above renaming in MAINTAINERS files too.
>
> Signed-off-by: Dipen Patel <dipenp@nvidia.com>
> ---
> This patch is on top of old series (Intro to Hardware timestamping
> engine V6) present in linux-next tentatively in preparation for
> merge.

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] dt-bindings: Renamed hte directory to timestamp
  2022-05-12 17:50 [PATCH] dt-bindings: Renamed hte directory to timestamp Dipen Patel
  2022-05-13 20:53 ` Linus Walleij
@ 2022-05-18  0:35 ` Rob Herring
  2022-05-23 16:05   ` Rob Herring
  1 sibling, 1 reply; 5+ messages in thread
From: Rob Herring @ 2022-05-18  0:35 UTC (permalink / raw)
  To: Dipen Patel
  Cc: linux-tegra, devicetree, linus.walleij, linux-kernel,
	thierry.reding, robh+dt

On Thu, 12 May 2022 10:50:11 -0700, Dipen Patel wrote:
> Renamed hte dt binding directory to timestamp according review comment.
> Addressed minor comment about having HTE acronym first in the common dt
> binding document.
> 
> The change reflects above renaming in MAINTAINERS files too.
> 
> Signed-off-by: Dipen Patel <dipenp@nvidia.com>
> ---
> This patch is on top of old series (Intro to Hardware timestamping
> engine V6) present in linux-next tentatively in preparation for
> merge.
> 
>  .../{hte => timestamp}/hardware-timestamps-common.yaml      | 6 +++---
>  .../bindings/{hte => timestamp}/hte-consumer.yaml           | 0
>  .../bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml    | 0
>  MAINTAINERS                                                 | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)
>  rename Documentation/devicetree/bindings/{hte => timestamp}/hardware-timestamps-common.yaml (71%)
>  rename Documentation/devicetree/bindings/{hte => timestamp}/hte-consumer.yaml (100%)
>  rename Documentation/devicetree/bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml (100%)
> 

Acked-by: Rob Herring <robh@kernel.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] dt-bindings: Renamed hte directory to timestamp
  2022-05-18  0:35 ` Rob Herring
@ 2022-05-23 16:05   ` Rob Herring
  2022-05-23 17:26     ` Dipen Patel
  0 siblings, 1 reply; 5+ messages in thread
From: Rob Herring @ 2022-05-23 16:05 UTC (permalink / raw)
  To: Dipen Patel
  Cc: linux-tegra, devicetree, Linus Walleij, linux-kernel, Thierry Reding

On Tue, May 17, 2022 at 7:35 PM Rob Herring <robh@kernel.org> wrote:
>
> On Thu, 12 May 2022 10:50:11 -0700, Dipen Patel wrote:
> > Renamed hte dt binding directory to timestamp according review comment.
> > Addressed minor comment about having HTE acronym first in the common dt
> > binding document.
> >
> > The change reflects above renaming in MAINTAINERS files too.
> >
> > Signed-off-by: Dipen Patel <dipenp@nvidia.com>
> > ---
> > This patch is on top of old series (Intro to Hardware timestamping
> > engine V6) present in linux-next tentatively in preparation for
> > merge.
> >
> >  .../{hte => timestamp}/hardware-timestamps-common.yaml      | 6 +++---
> >  .../bindings/{hte => timestamp}/hte-consumer.yaml           | 0
> >  .../bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml    | 0
> >  MAINTAINERS                                                 | 2 +-
> >  4 files changed, 4 insertions(+), 4 deletions(-)
> >  rename Documentation/devicetree/bindings/{hte => timestamp}/hardware-timestamps-common.yaml (71%)
> >  rename Documentation/devicetree/bindings/{hte => timestamp}/hte-consumer.yaml (100%)
> >  rename Documentation/devicetree/bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml (100%)
> >
>
> Acked-by: Rob Herring <robh@kernel.org>

I take that back:

./Documentation/devicetree/bindings/timestamp/hte-consumer.yaml: $id:
relative path/filename doesn't match actual path or filename
expected: http://devicetree.org/schemas/timestamp/hte-consumer.yaml#
./Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml:
$id: relative path/filename doesn't match actual path or filename
expected: http://devicetree.org/schemas/timestamp/nvidia,tegra194-hte.yaml#
./Documentation/devicetree/bindings/timestamp/hardware-timestamps-common.yaml:
$id: relative path/filename doesn't match actual path or filename
expected: http://devicetree.org/schemas/timestamp/hardware-timestamps-common.yaml#


I was wondering why a new common binding was already in next without a
Reviewed-by, but I let that slide. Now I regret doing that.

Rob

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] dt-bindings: Renamed hte directory to timestamp
  2022-05-23 16:05   ` Rob Herring
@ 2022-05-23 17:26     ` Dipen Patel
  0 siblings, 0 replies; 5+ messages in thread
From: Dipen Patel @ 2022-05-23 17:26 UTC (permalink / raw)
  To: Rob Herring
  Cc: linux-tegra, devicetree, Linus Walleij, linux-kernel, Thierry Reding

Hi Rob,

I have just sent out the patch to fix this.

Best Regards,

Dipen Patel

On 5/23/22 9:05 AM, Rob Herring wrote:
> On Tue, May 17, 2022 at 7:35 PM Rob Herring <robh@kernel.org> wrote:
>> On Thu, 12 May 2022 10:50:11 -0700, Dipen Patel wrote:
>>> Renamed hte dt binding directory to timestamp according review comment.
>>> Addressed minor comment about having HTE acronym first in the common dt
>>> binding document.
>>>
>>> The change reflects above renaming in MAINTAINERS files too.
>>>
>>> Signed-off-by: Dipen Patel <dipenp@nvidia.com>
>>> ---
>>> This patch is on top of old series (Intro to Hardware timestamping
>>> engine V6) present in linux-next tentatively in preparation for
>>> merge.
>>>
>>>  .../{hte => timestamp}/hardware-timestamps-common.yaml      | 6 +++---
>>>  .../bindings/{hte => timestamp}/hte-consumer.yaml           | 0
>>>  .../bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml    | 0
>>>  MAINTAINERS                                                 | 2 +-
>>>  4 files changed, 4 insertions(+), 4 deletions(-)
>>>  rename Documentation/devicetree/bindings/{hte => timestamp}/hardware-timestamps-common.yaml (71%)
>>>  rename Documentation/devicetree/bindings/{hte => timestamp}/hte-consumer.yaml (100%)
>>>  rename Documentation/devicetree/bindings/{hte => timestamp}/nvidia,tegra194-hte.yaml (100%)
>>>
>> Acked-by: Rob Herring <robh@kernel.org>
> I take that back:
>
> ./Documentation/devicetree/bindings/timestamp/hte-consumer.yaml: $id:
> relative path/filename doesn't match actual path or filename
> expected: http://devicetree.org/schemas/timestamp/hte-consumer.yaml#
> ./Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml:
> $id: relative path/filename doesn't match actual path or filename
> expected: http://devicetree.org/schemas/timestamp/nvidia,tegra194-hte.yaml#
> ./Documentation/devicetree/bindings/timestamp/hardware-timestamps-common.yaml:
> $id: relative path/filename doesn't match actual path or filename
> expected: http://devicetree.org/schemas/timestamp/hardware-timestamps-common.yaml#
>
>
> I was wondering why a new common binding was already in next without a
> Reviewed-by, but I let that slide. Now I regret doing that.
>
> Rob

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-05-23 17:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-12 17:50 [PATCH] dt-bindings: Renamed hte directory to timestamp Dipen Patel
2022-05-13 20:53 ` Linus Walleij
2022-05-18  0:35 ` Rob Herring
2022-05-23 16:05   ` Rob Herring
2022-05-23 17:26     ` Dipen Patel

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).