Commit bea6030d authored by Thiemo Seufer's avatar Thiemo Seufer
Browse files

arm_gic.c error message fix, by Adam Lackorzynski.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3153 c046a42c-6fe2-441c-8c8c-71466251a162
parent 8c2cc7ce
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -460,7 +460,7 @@ static uint32_t gic_cpu_read(void *opaque, target_phys_addr_t offset)
    case 0x18: /* Highest Pending Interrupt */
        return s->current_pending;
    default:
        cpu_abort (cpu_single_env, "gic_cpu_writeb: Bad offset %x\n", offset);
        cpu_abort (cpu_single_env, "gic_cpu_read: Bad offset %x\n", offset);
        return 0;
    }
}
@@ -484,7 +484,7 @@ static void gic_cpu_write(void *opaque, target_phys_addr_t offset,
    case 0x10: /* End Of Interrupt */
        return gic_complete_irq(s, value & 0x3ff);
    default:
        cpu_abort (cpu_single_env, "gic_cpu_writeb: Bad offset %x\n", offset);
        cpu_abort (cpu_single_env, "gic_cpu_write: Bad offset %x\n", offset);
        return;
    }
    gic_update(s);