Revision abff909c

b/hw/pl061.c
164 164
    case 0x528: /* Analog mode select */
165 165
        return s->amsel;
166 166
    default:
167
        hw_error("pl061_read: Bad offset %x\n", (int)offset);
167
        qemu_log_mask(LOG_GUEST_ERROR,
168
                      "pl061_read: Bad offset %x\n", (int)offset);
168 169
        return 0;
169 170
    }
170 171
}
......
239 240
        s->amsel = value & 0xff;
240 241
        break;
241 242
    default:
242
        hw_error("pl061_write: Bad offset %x\n", (int)offset);
243
        qemu_log_mask(LOG_GUEST_ERROR,
244
                      "pl061_write: Bad offset %x\n", (int)offset);
243 245
    }
244 246
    pl061_update(s);
245 247
}

Also available in: Unified diff