Skip to content

Commit

Permalink
hw/pl190: Use LOG_UNIMP rather than hw_error()
Browse files Browse the repository at this point in the history
Use LOG_UNIMP to report attempts to use the unimplemented test mode.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
pm215 committed Oct 30, 2012
1 parent 375cb56 commit 2d74698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/pl190.c
Expand Up @@ -199,7 +199,7 @@ static void pl190_write(void *opaque, hwaddr offset,
break;
case 0xc0: /* ITCR */
if (val) {
hw_error("pl190: Test mode not implemented\n");
qemu_log_mask(LOG_UNIMP, "pl190: Test mode not implemented\n");
}
break;
default:
Expand Down

0 comments on commit 2d74698

Please sign in to comment.