Commit 79b0241756f097c76301ce5f9b9aa7454bc04e80

Authored by pbrook
1 parent c8623f2e

Fix typo in error message.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3703 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 2 deletions
hw/stellaris.c
@@ -443,7 +443,7 @@ static uint32_t ssys_read(void *opaque, target_phys_addr_t offset) @@ -443,7 +443,7 @@ static uint32_t ssys_read(void *opaque, target_phys_addr_t offset)
443 case 0x160: /* LDOARST */ 443 case 0x160: /* LDOARST */
444 return s->ldoarst; 444 return s->ldoarst;
445 default: 445 default:
446 - cpu_abort(cpu_single_env, "gptm_read: Bad offset 0x%x\n", (int)offset); 446 + cpu_abort(cpu_single_env, "ssys_read: Bad offset 0x%x\n", (int)offset);
447 return 0; 447 return 0;
448 } 448 }
449 } 449 }
@@ -516,7 +516,7 @@ static void ssys_write(void *opaque, target_phys_addr_t offset, uint32_t value) @@ -516,7 +516,7 @@ static void ssys_write(void *opaque, target_phys_addr_t offset, uint32_t value)
516 s->ldoarst = value; 516 s->ldoarst = value;
517 break; 517 break;
518 default: 518 default:
519 - cpu_abort(cpu_single_env, "gptm_write: Bad offset 0x%x\n", (int)offset); 519 + cpu_abort(cpu_single_env, "ssys_write: Bad offset 0x%x\n", (int)offset);
520 } 520 }
521 ssys_update(s); 521 ssys_update(s);
522 } 522 }