]> git.proxmox.com Git - qemu.git/commitdiff
hw/pl190: Use LOG_UNIMP rather than hw_error()
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 30 Oct 2012 07:45:09 +0000 (07:45 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 30 Oct 2012 07:45:09 +0000 (07:45 +0000)
Use LOG_UNIMP to report attempts to use the unimplemented test mode.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
hw/pl190.c

index 213229b566e477cdf1e31b93ccf15155f7a96ae3..40199302a99a334b6b87596980e18f2d8a97d165 100644 (file)
@@ -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: