mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 04:13:39 +08:00
PPC: dbdma: Fix debug print
There was a debug print that didn't compile for me because the format and the arguments weren't in sync. Fix it up. Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
33ce36bb33
commit
58c0c31183
@ -720,7 +720,8 @@ static void dbdma_write(void *opaque, hwaddr addr,
|
||||
DBDMA_channel *ch = &s->channels[channel];
|
||||
int reg = (addr - (channel << DBDMA_CHANNEL_SHIFT)) >> 2;
|
||||
|
||||
DBDMA_DPRINTF("writel 0x" TARGET_FMT_plx " <= 0x%08x\n", addr, value);
|
||||
DBDMA_DPRINTF("writel 0x" TARGET_FMT_plx " <= 0x%08"PRIx64"\n",
|
||||
addr, value);
|
||||
DBDMA_DPRINTF("channel 0x%x reg 0x%x\n",
|
||||
(uint32_t)addr >> DBDMA_CHANNEL_SHIFT, reg);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user