linux-renesas-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files
@ 2019-08-09 21:30 Simon Horman
  2019-08-09 21:30 ` [PATCH v2 1/4] dt-bindings: i2c: sh_mobile: Rename bindings documentation file Simon Horman
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Simon Horman @ 2019-08-09 21:30 UTC (permalink / raw)
  To: Wolfram Sang, Chris Brandt
  Cc: Rob Herring, Mark Rutland, Magnus Damm, linux-i2c, devicetree,
	linux-renesas-soc, Simon Horman

Rename the bindings documentation file for Renesas I2C controllers.

This is part of an ongoing effort to name bindings documentation files for
Renesas IP blocks consistently, in line with the compat strings they
document.

Based on v5.3-rc1

Changes since v1
* Accumulate review tags
* Correct changelogs

Simon Horman (4):
  dt-bindings: i2c: sh_mobile: Rename bindings documentation file
  dt-bindings: i2c: rcar: Rename bindings documentation file
  dt-bindings: i2c: riic: Rename bindings documentation file
  dt-bindings: i2c: i2c-emev2: Rename bindings documentation file

 .../devicetree/bindings/i2c/{i2c-rcar.txt => renesas,i2c.txt}     | 0
 .../bindings/i2c/{i2c-emev2.txt => renesas,iic-emev2.txt}         | 0
 .../bindings/i2c/{i2c-sh_mobile.txt => renesas,iic.txt}           | 0
 .../devicetree/bindings/i2c/{i2c-riic.txt => renesas,riic.txt}    | 0
 MAINTAINERS                                                       | 8 ++++----
 5 files changed, 4 insertions(+), 4 deletions(-)
 rename Documentation/devicetree/bindings/i2c/{i2c-rcar.txt => renesas,i2c.txt} (100%)
 rename Documentation/devicetree/bindings/i2c/{i2c-emev2.txt => renesas,iic-emev2.txt} (100%)
 rename Documentation/devicetree/bindings/i2c/{i2c-sh_mobile.txt => renesas,iic.txt} (100%)
 rename Documentation/devicetree/bindings/i2c/{i2c-riic.txt => renesas,riic.txt} (100%)

-- 
2.11.0


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

* [PATCH v2 1/4] dt-bindings: i2c: sh_mobile: Rename bindings documentation file
  2019-08-09 21:30 [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Simon Horman
@ 2019-08-09 21:30 ` Simon Horman
  2019-08-09 21:30 ` [PATCH v2 2/4] dt-bindings: i2c: rcar: " Simon Horman
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2019-08-09 21:30 UTC (permalink / raw)
  To: Wolfram Sang, Chris Brandt
  Cc: Rob Herring, Mark Rutland, Magnus Damm, linux-i2c, devicetree,
	linux-renesas-soc, Simon Horman

Rename the bindings documentation file for sh_mobile I2C controller
from i2c-sh_mobile.txt to renesas,iic.txt.

This is part of an ongoing effort to name bindings documentation files for
Renesas IP blocks consistently, in line with the compat strings they
document.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2
* Add review tag
---
 .../devicetree/bindings/i2c/{i2c-sh_mobile.txt => renesas,iic.txt}      | 0
 MAINTAINERS                                                             | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename Documentation/devicetree/bindings/i2c/{i2c-sh_mobile.txt => renesas,iic.txt} (100%)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt b/Documentation/devicetree/bindings/i2c/renesas,iic.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
rename to Documentation/devicetree/bindings/i2c/renesas,iic.txt
diff --git a/MAINTAINERS b/MAINTAINERS
index 783569e3c4b4..4c8262837da9 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -13651,7 +13651,7 @@ RENESAS R-CAR I2C DRIVERS
 M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
 S:	Supported
 F:	Documentation/devicetree/bindings/i2c/i2c-rcar.txt
-F:	Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
+F:	Documentation/devicetree/bindings/i2c/renesas,iic.txt
 F:	drivers/i2c/busses/i2c-rcar.c
 F:	drivers/i2c/busses/i2c-sh_mobile.c
 
-- 
2.11.0


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

* [PATCH v2 2/4] dt-bindings: i2c: rcar: Rename bindings documentation file
  2019-08-09 21:30 [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Simon Horman
  2019-08-09 21:30 ` [PATCH v2 1/4] dt-bindings: i2c: sh_mobile: Rename bindings documentation file Simon Horman
@ 2019-08-09 21:30 ` Simon Horman
  2019-08-09 21:30 ` [PATCH v2 3/4] dt-bindings: i2c: riic: " Simon Horman
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2019-08-09 21:30 UTC (permalink / raw)
  To: Wolfram Sang, Chris Brandt
  Cc: Rob Herring, Mark Rutland, Magnus Damm, linux-i2c, devicetree,
	linux-renesas-soc, Simon Horman

Rename the bindings documentation file for R-Car I2C controller
from i2c-rcar.txt to renesas,i2c.txt.

This is part of an ongoing effort to name bindings documentation files for
Renesas IP blocks consistently, in line with the compat strings they
document.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2
* Added review tag
* Corrected changelog to refer to renesas,i2c.txt
---
 Documentation/devicetree/bindings/i2c/{i2c-rcar.txt => renesas,i2c.txt} | 0
 MAINTAINERS                                                             | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename Documentation/devicetree/bindings/i2c/{i2c-rcar.txt => renesas,i2c.txt} (100%)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-rcar.txt b/Documentation/devicetree/bindings/i2c/renesas,i2c.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/i2c-rcar.txt
rename to Documentation/devicetree/bindings/i2c/renesas,i2c.txt
diff --git a/MAINTAINERS b/MAINTAINERS
index 4c8262837da9..b8c1181baea9 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -13650,7 +13650,7 @@ F:	drivers/iio/adc/rcar-gyroadc.c
 RENESAS R-CAR I2C DRIVERS
 M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
 S:	Supported
-F:	Documentation/devicetree/bindings/i2c/i2c-rcar.txt
+F:	Documentation/devicetree/bindings/i2c/renesas,i2c.txt
 F:	Documentation/devicetree/bindings/i2c/renesas,iic.txt
 F:	drivers/i2c/busses/i2c-rcar.c
 F:	drivers/i2c/busses/i2c-sh_mobile.c
-- 
2.11.0


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

* [PATCH v2 3/4] dt-bindings: i2c: riic: Rename bindings documentation file
  2019-08-09 21:30 [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Simon Horman
  2019-08-09 21:30 ` [PATCH v2 1/4] dt-bindings: i2c: sh_mobile: Rename bindings documentation file Simon Horman
  2019-08-09 21:30 ` [PATCH v2 2/4] dt-bindings: i2c: rcar: " Simon Horman
@ 2019-08-09 21:30 ` Simon Horman
  2019-08-09 21:30 ` [PATCH v2 4/4] dt-bindings: i2c: i2c-emev2: " Simon Horman
  2019-08-14 13:04 ` [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Wolfram Sang
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2019-08-09 21:30 UTC (permalink / raw)
  To: Wolfram Sang, Chris Brandt
  Cc: Rob Herring, Mark Rutland, Magnus Damm, linux-i2c, devicetree,
	linux-renesas-soc, Simon Horman

Rename the bindings documentation file for RIIC controller
from i2c-riic.txt to renesas,riic.txt.

This is part of an ongoing effort to name bindings documentation files for
Renesas IP blocks consistently, in line with the compat strings they
document.

Cc: Chris Brandt <chris.brandt@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2
* Add review tag
---
 .../devicetree/bindings/i2c/{i2c-riic.txt => renesas,riic.txt}          | 0
 MAINTAINERS                                                             | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename Documentation/devicetree/bindings/i2c/{i2c-riic.txt => renesas,riic.txt} (100%)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-riic.txt b/Documentation/devicetree/bindings/i2c/renesas,riic.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/i2c-riic.txt
rename to Documentation/devicetree/bindings/i2c/renesas,riic.txt
diff --git a/MAINTAINERS b/MAINTAINERS
index b8c1181baea9..fc3ed4fe0ba5 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -13658,7 +13658,7 @@ F:	drivers/i2c/busses/i2c-sh_mobile.c
 RENESAS RIIC DRIVER
 M:	Chris Brandt <chris.brandt@renesas.com>
 S:	Supported
-F:	Documentation/devicetree/bindings/i2c/i2c-riic.txt
+F:	Documentation/devicetree/bindings/i2c/renesas,riic.txt
 F:	drivers/i2c/busses/i2c-riic.c
 
 RENESAS USB PHY DRIVER
-- 
2.11.0


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

* [PATCH v2 4/4] dt-bindings: i2c: i2c-emev2: Rename bindings documentation file
  2019-08-09 21:30 [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Simon Horman
                   ` (2 preceding siblings ...)
  2019-08-09 21:30 ` [PATCH v2 3/4] dt-bindings: i2c: riic: " Simon Horman
@ 2019-08-09 21:30 ` Simon Horman
  2019-08-14 13:04 ` [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Wolfram Sang
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2019-08-09 21:30 UTC (permalink / raw)
  To: Wolfram Sang, Chris Brandt
  Cc: Rob Herring, Mark Rutland, Magnus Damm, linux-i2c, devicetree,
	linux-renesas-soc, Simon Horman

Rename the bindings documentation file for Renesas EMEV2 IIC controller
from i2c-emev2.txt to renesas,iic-emev2.txt.

This is part of an ongoing effort to name bindings documentation files for
Renesas IP blocks consistently, in line with the compat strings they
document.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2
* Added review tag
* Corrected subject to refer to i2c-emev2
---
 .../devicetree/bindings/i2c/{i2c-emev2.txt => renesas,iic-emev2.txt}    | 0
 MAINTAINERS                                                             | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename Documentation/devicetree/bindings/i2c/{i2c-emev2.txt => renesas,iic-emev2.txt} (100%)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-emev2.txt b/Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/i2c-emev2.txt
rename to Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
diff --git a/MAINTAINERS b/MAINTAINERS
index fc3ed4fe0ba5..e751ebb1a0ed 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -13628,7 +13628,7 @@ F:	drivers/clk/renesas/
 RENESAS EMEV2 I2C DRIVER
 M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
 S:	Supported
-F:	Documentation/devicetree/bindings/i2c/i2c-emev2.txt
+F:	Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
 F:	drivers/i2c/busses/i2c-emev2.c
 
 RENESAS ETHERNET DRIVERS
-- 
2.11.0


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

* Re: [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files
  2019-08-09 21:30 [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Simon Horman
                   ` (3 preceding siblings ...)
  2019-08-09 21:30 ` [PATCH v2 4/4] dt-bindings: i2c: i2c-emev2: " Simon Horman
@ 2019-08-14 13:04 ` Wolfram Sang
  4 siblings, 0 replies; 6+ messages in thread
From: Wolfram Sang @ 2019-08-14 13:04 UTC (permalink / raw)
  To: Simon Horman
  Cc: Wolfram Sang, Chris Brandt, Rob Herring, Mark Rutland,
	Magnus Damm, linux-i2c, devicetree, linux-renesas-soc

[-- Attachment #1: Type: text/plain, Size: 727 bytes --]

On Fri, Aug 09, 2019 at 02:30:00PM -0700, Simon Horman wrote:
> Rename the bindings documentation file for Renesas I2C controllers.
> 
> This is part of an ongoing effort to name bindings documentation files for
> Renesas IP blocks consistently, in line with the compat strings they
> document.
> 
> Based on v5.3-rc1
> 
> Changes since v1
> * Accumulate review tags
> * Correct changelogs
> 
> Simon Horman (4):
>   dt-bindings: i2c: sh_mobile: Rename bindings documentation file
>   dt-bindings: i2c: rcar: Rename bindings documentation file
>   dt-bindings: i2c: riic: Rename bindings documentation file
>   dt-bindings: i2c: i2c-emev2: Rename bindings documentation file

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2019-08-14 13:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-09 21:30 [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Simon Horman
2019-08-09 21:30 ` [PATCH v2 1/4] dt-bindings: i2c: sh_mobile: Rename bindings documentation file Simon Horman
2019-08-09 21:30 ` [PATCH v2 2/4] dt-bindings: i2c: rcar: " Simon Horman
2019-08-09 21:30 ` [PATCH v2 3/4] dt-bindings: i2c: riic: " Simon Horman
2019-08-09 21:30 ` [PATCH v2 4/4] dt-bindings: i2c: i2c-emev2: " Simon Horman
2019-08-14 13:04 ` [PATCH v2 0/4] dt-bindings: i2c: renesas: Rename bindings documentation files Wolfram Sang

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