Re: [U-Boot] [PATCH] nvedit: speed up printing of environment

2009-06-04 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1243146379-5699-1-git-send-email-vap...@gentoo.org you wrote: The printing code would check the same environment byte multiple times and write to the console one byte at a time. For some devices (such as the Blackfin JTAG console which operates in 8 bytes at a

[U-Boot] [PATCH] nvedit: speed up printing of environment

2009-05-24 Thread Mike Frysinger
The printing code would check the same environment byte multiple times and write to the console one byte at a time. For some devices (such as the Blackfin JTAG console which operates in 8 bytes at a time), this is pretty damned slow. So create a small 16 byte buffer to fill up and send to puts