Commit bea6030dcfcbb1bfc7489b2eee2705c0a39ebc1a
1 parent
8c2cc7ce
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
Showing
1 changed file
with
2 additions
and
2 deletions
hw/arm_gic.c
| ... | ... | @@ -460,7 +460,7 @@ static uint32_t gic_cpu_read(void *opaque, target_phys_addr_t offset) |
| 460 | 460 | case 0x18: /* Highest Pending Interrupt */ |
| 461 | 461 | return s->current_pending; |
| 462 | 462 | default: |
| 463 | - cpu_abort (cpu_single_env, "gic_cpu_writeb: Bad offset %x\n", offset); | |
| 463 | + cpu_abort (cpu_single_env, "gic_cpu_read: Bad offset %x\n", offset); | |
| 464 | 464 | return 0; |
| 465 | 465 | } |
| 466 | 466 | } |
| ... | ... | @@ -484,7 +484,7 @@ static void gic_cpu_write(void *opaque, target_phys_addr_t offset, |
| 484 | 484 | case 0x10: /* End Of Interrupt */ |
| 485 | 485 | return gic_complete_irq(s, value & 0x3ff); |
| 486 | 486 | default: |
| 487 | - cpu_abort (cpu_single_env, "gic_cpu_writeb: Bad offset %x\n", offset); | |
| 487 | + cpu_abort (cpu_single_env, "gic_cpu_write: Bad offset %x\n", offset); | |
| 488 | 488 | return; |
| 489 | 489 | } |
| 490 | 490 | gic_update(s); | ... | ... |