Re: [PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-22 Thread Jon Loeliger
I'm in favour of applying the char literals in cell lists patch immediately. Jon? Done. jdl ___ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org https://lists.ozlabs.org/listinfo/devicetree-discuss

Re: [PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-21 Thread Anton Staaf
On Mon, Sep 19, 2011 at 8:34 PM, David Gibson da...@gibson.dropbear.id.au wrote: On Mon, Sep 19, 2011 at 07:54:09PM -0700, Anton Staaf wrote: On Mon, Sep 19, 2011 at 5:59 PM, David Gibson da...@gibson.dropbear.id.au wrote: On Mon, Sep 19, 2011 at 09:45:34AM -0700, Anton Staaf wrote: On Sun,

Re: [PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-21 Thread David Gibson
On Wed, Sep 21, 2011 at 12:38:17PM -0700, Anton Staaf wrote: On Mon, Sep 19, 2011 at 8:34 PM, David Gibson da...@gibson.dropbear.id.au wrote: On Mon, Sep 19, 2011 at 07:54:09PM -0700, Anton Staaf wrote: On Mon, Sep 19, 2011 at 5:59 PM, David Gibson da...@gibson.dropbear.id.au wrote: On

Re: [PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-19 Thread David Gibson
On Mon, Sep 19, 2011 at 09:45:34AM -0700, Anton Staaf wrote: On Sun, Sep 18, 2011 at 7:00 PM, David Gibson da...@gibson.dropbear.id.au wrote: On Sat, Sep 17, 2011 at 11:49:21AM -0500, Jon Loeliger wrote: On Fri, Sep 09, 2011 at 12:16:30PM -0700, Anton Staaf wrote: With this patch the

Re: [PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-19 Thread David Gibson
On Mon, Sep 19, 2011 at 07:54:09PM -0700, Anton Staaf wrote: On Mon, Sep 19, 2011 at 5:59 PM, David Gibson da...@gibson.dropbear.id.au wrote: On Mon, Sep 19, 2011 at 09:45:34AM -0700, Anton Staaf wrote: On Sun, Sep 18, 2011 at 7:00 PM, David Gibson da...@gibson.dropbear.id.au wrote: On

Re: [PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-18 Thread David Gibson
On Sat, Sep 17, 2011 at 11:49:21AM -0500, Jon Loeliger wrote: On Fri, Sep 09, 2011 at 12:16:30PM -0700, Anton Staaf wrote: With this patch the following property assignment: property = 0x12345678 'a' '\r' 100; is equivalent to: property = 0x12345678 0x0061

Re: [PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-11 Thread David Gibson
On Fri, Sep 09, 2011 at 12:16:30PM -0700, Anton Staaf wrote: With this patch the following property assignment: property = 0x12345678 'a' '\r' 100; is equivalent to: property = 0x12345678 0x0061 0x000D 0x0064 Signed-off-by: Anton Staaf robot...@chromium.org

[PATCH v4 2/3] dtc: Support character literals in cell lists

2011-09-09 Thread Anton Staaf
With this patch the following property assignment: property = 0x12345678 'a' '\r' 100; is equivalent to: property = 0x12345678 0x0061 0x000D 0x0064 Signed-off-by: Anton Staaf robot...@chromium.org Cc: Jon Loeliger j...@jdl.com Cc: David Gibson da...@gibson.dropbear.id.au