mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/2] state: Documentation updates
@ 2015-06-15 13:33 Marc Kleine-Budde
  2015-06-15 13:33 ` [PATCH 1/2] state: Documentation: the backend properties are not optional (anymore) Marc Kleine-Budde
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2015-06-15 13:33 UTC (permalink / raw)
  To: barebox

Hello,

here two state Documentation updates.

Marc


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

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

* [PATCH 1/2] state: Documentation: the backend properties are not optional (anymore)
  2015-06-15 13:33 [PATCH 0/2] state: Documentation updates Marc Kleine-Budde
@ 2015-06-15 13:33 ` Marc Kleine-Budde
  2015-06-15 13:34 ` [PATCH 2/2] state: Documentation: fix dts code example Marc Kleine-Budde
  2015-06-17  5:52 ` [PATCH 0/2] state: Documentation updates Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2015-06-15 13:33 UTC (permalink / raw)
  To: barebox

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 Documentation/devicetree/bindings/barebox/barebox,state.rst | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/barebox/barebox,state.rst b/Documentation/devicetree/bindings/barebox/barebox,state.rst
index 7156084c9364..fe8a3d5bc8e3 100644
--- a/Documentation/devicetree/bindings/barebox/barebox,state.rst
+++ b/Documentation/devicetree/bindings/barebox/barebox,state.rst
@@ -29,9 +29,6 @@ Required properties:
 
 * ``compatible``: should be ``barebox,state``;
 * ``magic``: A 32bit number used as a magic to identify the state
-
-Optional properties:
-
 * ``backend``: describes where the data for this state is stored
 * ``backend-type``: should be ``raw`` or ``dtb``.
 
-- 
2.1.4


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

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

* [PATCH 2/2] state: Documentation: fix dts code example
  2015-06-15 13:33 [PATCH 0/2] state: Documentation updates Marc Kleine-Budde
  2015-06-15 13:33 ` [PATCH 1/2] state: Documentation: the backend properties are not optional (anymore) Marc Kleine-Budde
@ 2015-06-15 13:34 ` Marc Kleine-Budde
  2015-06-17  5:52 ` [PATCH 0/2] state: Documentation updates Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2015-06-15 13:34 UTC (permalink / raw)
  To: barebox

It's "uint32" not "u32" and we use integers for the "enum32" defaults.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 Documentation/devicetree/bindings/barebox/barebox,state.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/barebox/barebox,state.rst b/Documentation/devicetree/bindings/barebox/barebox,state.rst
index fe8a3d5bc8e3..6e8b65012133 100644
--- a/Documentation/devicetree/bindings/barebox/barebox,state.rst
+++ b/Documentation/devicetree/bindings/barebox/barebox,state.rst
@@ -70,7 +70,7 @@ Example::
 
   	foo {
 		reg = <0x00 0x4>;
-  		type = "u32";
+  		type = "uint32";
   		default = <0x0>;
   	};
 
@@ -78,7 +78,7 @@ Example::
 		reg = <0x10 0x4>;
   		type = "enum32";
   		names = "baz", "qux";
-  		default ="qux";
+  		default = <1>;
   	};
   };
 
-- 
2.1.4


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

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

* Re: [PATCH 0/2] state: Documentation updates
  2015-06-15 13:33 [PATCH 0/2] state: Documentation updates Marc Kleine-Budde
  2015-06-15 13:33 ` [PATCH 1/2] state: Documentation: the backend properties are not optional (anymore) Marc Kleine-Budde
  2015-06-15 13:34 ` [PATCH 2/2] state: Documentation: fix dts code example Marc Kleine-Budde
@ 2015-06-17  5:52 ` Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2015-06-17  5:52 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: barebox

On Mon, Jun 15, 2015 at 03:33:58PM +0200, Marc Kleine-Budde wrote:
> Hello,
> 
> here two state Documentation updates.

Applied, thanks

Sascha


-- 
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] 4+ messages in thread

end of thread, other threads:[~2015-06-17  5:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-15 13:33 [PATCH 0/2] state: Documentation updates Marc Kleine-Budde
2015-06-15 13:33 ` [PATCH 1/2] state: Documentation: the backend properties are not optional (anymore) Marc Kleine-Budde
2015-06-15 13:34 ` [PATCH 2/2] state: Documentation: fix dts code example Marc Kleine-Budde
2015-06-17  5:52 ` [PATCH 0/2] state: Documentation updates Sascha Hauer

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