Revision 2ac71179 hw/pl011.c

b/hw/pl011.c
103 103
    case 18: /* UARTDMACR */
104 104
        return s->dmacr;
105 105
    default:
106
        cpu_abort (cpu_single_env, "pl011_read: Bad offset %x\n", (int)offset);
106
        hw_error("pl011_read: Bad offset %x\n", (int)offset);
107 107
        return 0;
108 108
    }
109 109
}
......
175 175
    case 18: /* UARTDMACR */
176 176
        s->dmacr = value;
177 177
        if (value & 3)
178
            cpu_abort(cpu_single_env, "PL011: DMA not implemented\n");
178
            hw_error("PL011: DMA not implemented\n");
179 179
        break;
180 180
    default:
181
        cpu_abort (cpu_single_env, "pl011_write: Bad offset %x\n", (int)offset);
181
        hw_error("pl011_write: Bad offset %x\n", (int)offset);
182 182
    }
183 183
}
184 184

  

Also available in: Unified diff