summaryrefslogtreecommitdiffstats
path: root/hw/lm32_timer.c
diff options
context:
space:
mode:
authorMarkus Armbruster2011-06-22 14:03:56 +0200
committerStefan Hajnoczi2011-06-24 10:13:37 +0200
commitdd3d677512ae3f15b2e85254cec10023825210ec (patch)
treefcc5a2e8eabfddee4658d8fe0ec7e9bcfbd6d790 /hw/lm32_timer.c
parentqemu-img: Don't prepend qemu-img to error messages twice. (diff)
downloadqemu-dd3d677512ae3f15b2e85254cec10023825210ec.tar.gz
qemu-dd3d677512ae3f15b2e85254cec10023825210ec.tar.xz
qemu-dd3d677512ae3f15b2e85254cec10023825210ec.zip
Spell "unkown" correctly in error_report() arguments
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'hw/lm32_timer.c')
-rw-r--r--hw/lm32_timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/lm32_timer.c b/hw/lm32_timer.c
index ed289847ac..49cbb22993 100644
--- a/hw/lm32_timer.c
+++ b/hw/lm32_timer.c
@@ -86,7 +86,7 @@ static uint32_t timer_read(void *opaque, target_phys_addr_t addr)
r = (uint32_t)ptimer_get_count(s->ptimer);
break;
default:
- error_report("lm32_timer: read access to unkown register 0x"
+ error_report("lm32_timer: read access to unknown register 0x"
TARGET_FMT_plx, addr << 2);
break;
}
@@ -124,7 +124,7 @@ static void timer_write(void *opaque, target_phys_addr_t addr, uint32_t value)
TARGET_FMT_plx, addr << 2);
break;
default:
- error_report("lm32_timer: write access to unkown register 0x"
+ error_report("lm32_timer: write access to unknown register 0x"
TARGET_FMT_plx, addr << 2);
break;
}