ssi: Fix bad printf format specifiers
We should use printf format specifier "%u" instead of "%d" for argument of type "unsigned int". Reported-by: Euler Robot <euler.robot@huawei.com> Signed-off-by: Alex Chen <alex.chen@huawei.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 5FA280F5.8060902@huawei.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
9ad5f6b05f
commit
9df0a97298
@ -53,7 +53,7 @@ static const char *imx_spi_reg_name(uint32_t reg)
|
||||
case ECSPI_MSGDATA:
|
||||
return "ECSPI_MSGDATA";
|
||||
default:
|
||||
sprintf(unknown, "%d ?", reg);
|
||||
sprintf(unknown, "%u ?", reg);
|
||||
return unknown;
|
||||
}
|
||||
}
|
||||
|
@ -142,7 +142,7 @@ static void xlx_spi_update_irq(XilinxSPI *s)
|
||||
irq chain unless things really changed. */
|
||||
if (pending != s->irqline) {
|
||||
s->irqline = pending;
|
||||
DB_PRINT("irq_change of state %d ISR:%x IER:%X\n",
|
||||
DB_PRINT("irq_change of state %u ISR:%x IER:%X\n",
|
||||
pending, s->regs[R_IPISR], s->regs[R_IPIER]);
|
||||
qemu_set_irq(s->irq, pending);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user