Re: [U-Boot] [PATCH] cmd editing: optimize/shrink output blanking

2010-08-08 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1279877295-4823-1-git-send-email-vap...@gentoo.org> you wrote: > No need to output spaces 1 char at a time in a loop when the printf code > can do the same thing with the right format string. This shrinks things > and gives a nice speed up when killing off lines m

[U-Boot] [PATCH] cmd editing: optimize/shrink output blanking

2010-07-23 Thread Mike Frysinger
No need to output spaces 1 char at a time in a loop when the printf code can do the same thing with the right format string. This shrinks things and gives a nice speed up when killing off lines more than a byte or two as printf will send out the buffer in one big chunk. Signed-off-by: Mike Frysin