From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerry Van Baren Date: Sat, 12 May 2007 19:44:24 -0400 Subject: [U-Boot-Users] [PATCH u-boot-fdt] FDT command improvements. In-Reply-To: <20070512142748.3CE9835264E@atlas.denx.de> References: <20070512142748.3CE9835264E@atlas.denx.de> Message-ID: <46465158.5070602@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Wolfgang Denk wrote: > In message <20070512140543.GC28102@cideas.com> you wrote: >> + printf ("findnodeoffset() libfdt: %s\n", fdt_strerror(nodeoffset)); > ... >> + printf ("libfdt fdt_open_into(): %s\n", fdt_strerror(err)); > ... >> - printf("Sorry, I could not convert \"%s\"\n", cp); >> + printf ("libfdt fdt_getprop(): %s\n", fdt_strerror(len)); > ... >> + printf("libfdt fdt_del_node(): %s\n", fdt_strerror(err)); > ... > > ---------1---------2---------3---------4---------5---------6---------7---------8 > > Please keep in mind: > > The limit on the length of lines is 80 columns and THIS IS A HARD > LIMIT. > > > Best regards, > Wolfgang Denk Hi Wolfgang, Does :set ts=4 count? It fits in 80 columns then. ;-) The nesting is getting me in trouble. I can fix some, but some would be ugly to fix because I would need to split strings. I could move the value parsing into a subroutine, that would help. Since the LIMIT IS HARD, I'll work it... Best regards, gvb