mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] Documentation: device tree bindings.
@ 2014-06-30 12:23 Robert P. J. Day
  2014-06-30 15:56 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2014-06-30 12:23 UTC (permalink / raw)
  To: U-Boot Version 2 (barebox)


Adjusted Sphinx markup for devicetree bindings pages.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

---

  not completely confident in my markup here so i'm open to
suggestions.

diff --git a/Documentation/devicetree/bindings/barebox/barebox,environment.rst b/Documentation/devicetree/bindings/barebox/barebox,environment.rst
index d243484..d472f66 100644
--- a/Documentation/devicetree/bindings/barebox/barebox,environment.rst
+++ b/Documentation/devicetree/bindings/barebox/barebox,environment.rst
@@ -4,18 +4,19 @@ barebox environment
 This driver provides an environment for barebox from the devicetree.

 Required properties:
-- compatible: should be "barebox,environment"
-- device-path: path to the environment
+
+* ``compatible``: should be ``barebox,environment``
+* ``device-path``: path to the environment

 The device-path is a multistring property. The first string should be a
 nodepath to the node containing the physical device of the environment.
 The subsequent strings are of the form <type>:<options> to further describe
 the path to the environment. Supported values for <type>:

-partname:<partname>  This describes a partition on a device. <partname> can
-                     be the label for mtd partitions, the number for DOS
-		     partitions (beginning with 0) or the name for GPT
-		     partitions
+``partname``:<partname>
+  This describes a partition on a device. <partname> can
+  be the label for MTD partitions, the number for DOS
+  partitions (beginning with 0) or the name for GPT partitions.

 Example::

diff --git a/Documentation/devicetree/bindings/leds/common.rst b/Documentation/devicetree/bindings/leds/common.rst
index 63a45bd..c1fd1ab 100644
--- a/Documentation/devicetree/bindings/leds/common.rst
+++ b/Documentation/devicetree/bindings/leds/common.rst
@@ -1,9 +1,10 @@
 Common leds properties
 ======================

-- linux,default-trigger barebox,default-trigger:  This parameter, if present, is a
+* ``linux,default-trigger``, ``barebox,default-trigger``:  This parameter, if present, is a
     string defining the trigger assigned to the LED.  Current triggers are:
-     "heartbeat" - LED flashes at a constant rate
-     "panic" - LED turns on when barebox panics
-     "net" - LED indicates network activity
+
+    * ``heartbeat`` - LED flashes at a constant rate
+    * ``panic`` - LED turns on when barebox panics
+    * ``net`` - LED indicates network activity

diff --git a/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst b/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst
index a067579..b9d5bcb 100644
--- a/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst
+++ b/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst
@@ -3,14 +3,14 @@ Freescale i.MX IIM (Ic Identification Module)

 Required properties:

-- compatible: fsl,imx27-iim
-- reg: physical register base and size
+* ``compatible``: ``fsl,imx27-iim``, ``fsl,imx51-iim``
+* ``reg``: physical register base and size

 Optional properties:

-- barebox,provide-mac-address: Provide MAC addresses for ethernet devices. This
-  can be multiple entries in the form <&phandle bankno fuseofs> to specify a MAC
-  address to a ethernet device.
+* ``barebox,provide-mac-address``: Provide MAC addresses for Ethernet devices. This
+  can be multiple entries in the form <&phandle bankno fuseofs> to assign a MAC
+  address to an Ethernet device.

 Example::

diff --git a/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst b/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst
index 472b9e2..403863e 100644
--- a/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst
+++ b/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst
@@ -3,14 +3,14 @@ Freescale i.MX OCOTP (On-Chip OTP)

 Required properties:

-- compatible: fsl,imx6q-ocotp
-- reg: physical register base and size
+* ``compatible``: ``fsl,imx6q-ocotp``
+* ``reg``: physical register base and size

 Optional properties:

-- barebox,provide-mac-address: Provide MAC addresses for ethernet devices. This
-  can be multiple entries in the form <&phandle regofs> to specify a MAC
-  address to a ethernet device.
+* ``barebox,provide-mac-address``: Provide MAC addresses for Ethernet devices. This
+  can be multiple entries in the form <&phandle regofs> to assign a MAC
+  address to an Ethernet device.

 Example::


-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] Documentation: device tree bindings.
  2014-06-30 12:23 [PATCH] Documentation: device tree bindings Robert P. J. Day
@ 2014-06-30 15:56 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2014-06-30 15:56 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: U-Boot Version 2 (barebox)

On Mon, Jun 30, 2014 at 08:23:43AM -0400, Robert P. J. Day wrote:
> 
> Adjusted Sphinx markup for devicetree bindings pages.
> 
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
> 
> ---
> 
>   not completely confident in my markup here so i'm open to
> suggestions.

Looks fine in the source code, so applied.

I'll have a look at the rendered html result tomorrow.

Sascha


> 
> diff --git a/Documentation/devicetree/bindings/barebox/barebox,environment.rst b/Documentation/devicetree/bindings/barebox/barebox,environment.rst
> index d243484..d472f66 100644
> --- a/Documentation/devicetree/bindings/barebox/barebox,environment.rst
> +++ b/Documentation/devicetree/bindings/barebox/barebox,environment.rst
> @@ -4,18 +4,19 @@ barebox environment
>  This driver provides an environment for barebox from the devicetree.
> 
>  Required properties:
> -- compatible: should be "barebox,environment"
> -- device-path: path to the environment
> +
> +* ``compatible``: should be ``barebox,environment``
> +* ``device-path``: path to the environment
> 
>  The device-path is a multistring property. The first string should be a
>  nodepath to the node containing the physical device of the environment.
>  The subsequent strings are of the form <type>:<options> to further describe
>  the path to the environment. Supported values for <type>:
> 
> -partname:<partname>  This describes a partition on a device. <partname> can
> -                     be the label for mtd partitions, the number for DOS
> -		     partitions (beginning with 0) or the name for GPT
> -		     partitions
> +``partname``:<partname>
> +  This describes a partition on a device. <partname> can
> +  be the label for MTD partitions, the number for DOS
> +  partitions (beginning with 0) or the name for GPT partitions.
> 
>  Example::
> 
> diff --git a/Documentation/devicetree/bindings/leds/common.rst b/Documentation/devicetree/bindings/leds/common.rst
> index 63a45bd..c1fd1ab 100644
> --- a/Documentation/devicetree/bindings/leds/common.rst
> +++ b/Documentation/devicetree/bindings/leds/common.rst
> @@ -1,9 +1,10 @@
>  Common leds properties
>  ======================
> 
> -- linux,default-trigger barebox,default-trigger:  This parameter, if present, is a
> +* ``linux,default-trigger``, ``barebox,default-trigger``:  This parameter, if present, is a
>      string defining the trigger assigned to the LED.  Current triggers are:
> -     "heartbeat" - LED flashes at a constant rate
> -     "panic" - LED turns on when barebox panics
> -     "net" - LED indicates network activity
> +
> +    * ``heartbeat`` - LED flashes at a constant rate
> +    * ``panic`` - LED turns on when barebox panics
> +    * ``net`` - LED indicates network activity
> 
> diff --git a/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst b/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst
> index a067579..b9d5bcb 100644
> --- a/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst
> +++ b/Documentation/devicetree/bindings/misc/fsl,imx-iim.rst
> @@ -3,14 +3,14 @@ Freescale i.MX IIM (Ic Identification Module)
> 
>  Required properties:
> 
> -- compatible: fsl,imx27-iim
> -- reg: physical register base and size
> +* ``compatible``: ``fsl,imx27-iim``, ``fsl,imx51-iim``
> +* ``reg``: physical register base and size
> 
>  Optional properties:
> 
> -- barebox,provide-mac-address: Provide MAC addresses for ethernet devices. This
> -  can be multiple entries in the form <&phandle bankno fuseofs> to specify a MAC
> -  address to a ethernet device.
> +* ``barebox,provide-mac-address``: Provide MAC addresses for Ethernet devices. This
> +  can be multiple entries in the form <&phandle bankno fuseofs> to assign a MAC
> +  address to an Ethernet device.
> 
>  Example::
> 
> diff --git a/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst b/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst
> index 472b9e2..403863e 100644
> --- a/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst
> +++ b/Documentation/devicetree/bindings/misc/fsl,imx-ocotp.rst
> @@ -3,14 +3,14 @@ Freescale i.MX OCOTP (On-Chip OTP)
> 
>  Required properties:
> 
> -- compatible: fsl,imx6q-ocotp
> -- reg: physical register base and size
> +* ``compatible``: ``fsl,imx6q-ocotp``
> +* ``reg``: physical register base and size
> 
>  Optional properties:
> 
> -- barebox,provide-mac-address: Provide MAC addresses for ethernet devices. This
> -  can be multiple entries in the form <&phandle regofs> to specify a MAC
> -  address to a ethernet device.
> +* ``barebox,provide-mac-address``: Provide MAC addresses for Ethernet devices. This
> +  can be multiple entries in the form <&phandle regofs> to assign a MAC
> +  address to an Ethernet device.
> 
>  Example::
> 
> 
> -- 
> 
> ========================================================================
> Robert P. J. Day                                 Ottawa, Ontario, CANADA
>                         http://crashcourse.ca
> 
> Twitter:                                       http://twitter.com/rpjday
> LinkedIn:                               http://ca.linkedin.com/in/rpjday
> ========================================================================
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2014-06-30 15:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-30 12:23 [PATCH] Documentation: device tree bindings Robert P. J. Day
2014-06-30 15:56 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox