bios: litespi: add newline to debug output
add newline to debug output Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
This commit is contained in:
parent
63fa4fda85
commit
d7bf75a75c
|
@ -156,7 +156,7 @@ static uint32_t spiflash_read_id_register(void)
|
||||||
transfer_cmd(w_buf, buf, 4);
|
transfer_cmd(w_buf, buf, 4);
|
||||||
|
|
||||||
#ifdef SPIFLASH_DEBUG
|
#ifdef SPIFLASH_DEBUG
|
||||||
printf("[ID: %02x %02x %02x %02x]", buf[0], buf[1], buf[2], buf[3]);
|
printf("[ID: %02x %02x %02x %02x]\n", buf[0], buf[1], buf[2], buf[3]);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* FIXME normally the status should be in buf[1],
|
/* FIXME normally the status should be in buf[1],
|
||||||
|
@ -173,7 +173,7 @@ static uint32_t spiflash_read_status_register(void)
|
||||||
transfer_cmd(w_buf, buf, 4);
|
transfer_cmd(w_buf, buf, 4);
|
||||||
|
|
||||||
#ifdef SPIFLASH_DEBUG
|
#ifdef SPIFLASH_DEBUG
|
||||||
printf("[SR: %02x %02x %02x %02x]", buf[0], buf[1], buf[2], buf[3]);
|
printf("[SR: %02x %02x %02x %02x]\n", buf[0], buf[1], buf[2], buf[3]);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* FIXME normally the status should be in buf[1],
|
/* FIXME normally the status should be in buf[1],
|
||||||
|
|
Loading…
Reference in New Issue