mirror of https://github.com/xqemu/xqemu.git
hw/pl041: Use LOG_UNIMP
Use the new LOG_UNIMP tracing to report unimplemented features. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
9351d70829
commit
b1d9df9021
|
@ -536,8 +536,9 @@ static int pl041_init(SysBusDevice *dev)
|
||||||
default:
|
default:
|
||||||
/* NC FIFO depth of 16 is not allowed because its id bits in
|
/* NC FIFO depth of 16 is not allowed because its id bits in
|
||||||
AACIPERIPHID3 overlap with the id for the default NC FIFO depth */
|
AACIPERIPHID3 overlap with the id for the default NC FIFO depth */
|
||||||
fprintf(stderr, "pl041: unsupported non-compact fifo depth [%i]\n",
|
qemu_log_mask(LOG_UNIMP,
|
||||||
s->fifo_depth);
|
"pl041: unsupported non-compact fifo depth [%i]\n",
|
||||||
|
s->fifo_depth);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue