Browse Source

devicetree: pwm: mxs-pwm.txt: Fix reg field annotation

In the reg field we should annotate the register address space in hexadecimal
format.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Fabio Estevam 13 years ago
parent
commit
7185fcc62d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Documentation/devicetree/bindings/pwm/mxs-pwm.txt

+ 1 - 1
Documentation/devicetree/bindings/pwm/mxs-pwm.txt

@@ -11,7 +11,7 @@ Example:
 
 
 pwm: pwm@80064000 {
 pwm: pwm@80064000 {
 	compatible = "fsl,imx28-pwm", "fsl,imx23-pwm";
 	compatible = "fsl,imx28-pwm", "fsl,imx23-pwm";
-	reg = <0x80064000 2000>;
+	reg = <0x80064000 0x2000>;
 	#pwm-cells = <2>;
 	#pwm-cells = <2>;
 	fsl,pwm-number = <8>;
 	fsl,pwm-number = <8>;
 };
 };