Re: [U-Boot] [PATCH v5 1/1] usb: gadget: avoid variable name clipping in cb_getvar

2017-03-28 Thread Nicolas le bayon
Hi Lukasz, A kind reminder to look at this patch (already reviewed by Marek). Thanks in advance for your time Best Regards Nicolas 2017-03-21 9:53 GMT+01:00 Nicolas le bayon : > Hi Lukasz, > > Would it be possible to have a look at this patch and review it please? > > Thanks in advance for you

Re: [U-Boot] [PATCH v5 1/1] usb: gadget: avoid variable name clipping in cb_getvar

2017-03-21 Thread Nicolas le bayon
Hi Lukasz, Would it be possible to have a look at this patch and review it please? Thanks in advance for your time Best Regards Nicolas 2017-03-17 13:26 GMT+01:00 Marek Vasut : > On 03/17/2017 10:57 AM, Nicolas le bayon wrote: > > From: Nicolas Le Bayon > > > > Instead of using a fixed-size a

Re: [U-Boot] [PATCH v5 1/1] usb: gadget: avoid variable name clipping in cb_getvar

2017-03-17 Thread Marek Vasut
On 03/17/2017 10:57 AM, Nicolas le bayon wrote: > From: Nicolas Le Bayon > > Instead of using a fixed-size array to store variable name, preferring a > dynamic allocation treats correctly all variable name lengths. > Variable names are growing through releases and features. By this way, name > cl

[U-Boot] [PATCH v5 1/1] usb: gadget: avoid variable name clipping in cb_getvar

2017-03-17 Thread Nicolas le bayon
From: Nicolas Le Bayon Instead of using a fixed-size array to store variable name, preferring a dynamic allocation treats correctly all variable name lengths. Variable names are growing through releases and features. By this way, name clipping is prevented. Signed-off-by: Nicolas Le Bayon ---