diff mbox series

dt-bindings: adau1977: Fix reset-gpios typo

Message ID 20190215102633.12700-1-bogdan.togorean@analog.com
State Not Applicable, archived
Headers show
Series dt-bindings: adau1977: Fix reset-gpios typo | expand

Checks

Context Check Description
robh/checkpatch success

Commit Message

Bogdan Togorean Feb. 15, 2019, 10:26 a.m. UTC
This change fixes a typo in the dt-binding examples (reset_gpio ->
reset-gpios).
Even though 'reset-gpio' is a valid construct for gpiolib the naming
'reset-gpios' is more suited for dt-bindings documentation.

Signed-off-by: Bogdan Togorean <bogdan.togorean@analog.com>
---
 Documentation/devicetree/bindings/sound/adi,adau1977.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Mark Brown Feb. 19, 2019, 11:11 a.m. UTC | #1
On Fri, Feb 15, 2019 at 12:26:33PM +0200, Bogdan Togorean wrote:
> This change fixes a typo in the dt-binding examples (reset_gpio ->
> reset-gpios).
> Even though 'reset-gpio' is a valid construct for gpiolib the naming
> 'reset-gpios' is more suited for dt-bindings documentation.

Please use subject lines matching the style for the subsystem.  This
makes it easier for people to identify relevant patches.
Rob Herring (Arm) Feb. 28, 2019, 6:36 p.m. UTC | #2
On Fri, 15 Feb 2019 12:26:33 +0200, Bogdan Togorean wrote:
> This change fixes a typo in the dt-binding examples (reset_gpio ->
> reset-gpios).
> Even though 'reset-gpio' is a valid construct for gpiolib the naming
> 'reset-gpios' is more suited for dt-bindings documentation.
> 
> Signed-off-by: Bogdan Togorean <bogdan.togorean@analog.com>
> ---
>  Documentation/devicetree/bindings/sound/adi,adau1977.txt | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 

Reviewed-by: Rob Herring <robh@kernel.org>
diff mbox series

Patch

diff --git a/Documentation/devicetree/bindings/sound/adi,adau1977.txt b/Documentation/devicetree/bindings/sound/adi,adau1977.txt
index e79aeef73f28..11acd94b1665 100644
--- a/Documentation/devicetree/bindings/sound/adi,adau1977.txt
+++ b/Documentation/devicetree/bindings/sound/adi,adau1977.txt
@@ -17,7 +17,7 @@  Required properties:
                 Documentation/devicetree/bindings/regulator/regulator.txt
 
 Optional properties:
- - reset-gpio:  the reset pin for the chip, for more details consult
+ - reset-gpios: the reset pin for the chip, for more details consult
                 Documentation/devicetree/bindings/gpio/gpio.txt
 
  - DVDD-supply: supply voltage for the digital core, please consult
@@ -40,7 +40,7 @@  Examples:
 		AVDD-supply = <&regulator>;
 		DVDD-supply = <&regulator_digital>;
 
-		reset_gpio = <&gpio 10 GPIO_ACTIVE_LOW>;
+		reset-gpios = <&gpio 10 GPIO_ACTIVE_LOW>;
 	};
 
 	adau1977_i2c: adau1977@11 {
@@ -50,5 +50,5 @@  Examples:
 		AVDD-supply = <&regulator>;
 		DVDD-supply = <&regulator_digital>;
 
-		reset_gpio = <&gpio 10 GPIO_ACTIVE_LOW>;
+		reset-gpios = <&gpio 10 GPIO_ACTIVE_LOW>;
 	};