1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 10:15:19 +02:00

Moved message in ingenic_load_sdram to loglevel LEVEL_DEBUG to not distract progressbar.

This commit is contained in:
Peter Zotov 2010-12-11 21:25:42 +03:00
parent 0c9dd55ec7
commit 2efaff5c6d

View File

@ -408,7 +408,7 @@ int ingenic_load_sdram(void *hndl, void *data, uint32_t base, uint32_t size) {
while(size) {
int block = size > STAGE2_IOBUF ? STAGE2_IOBUF : size;
printf("Loading %d bytes from %p to 0x%08X\n", block, data, base);
debug(LEVEL_DEBUG, "Loading %d bytes from %p to 0x%08X\n", block, data, base);
if(usbdev_sendbulk(handle->usb, data, block) == -1)
return -1;