summaryrefslogtreecommitdiff
path: root/hw/milkymist-ac97.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2011-06-22 14:03:56 +0200
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-06-24 09:13:37 +0100
commitdd3d677512ae3f15b2e85254cec10023825210ec (patch)
treefcc5a2e8eabfddee4658d8fe0ec7e9bcfbd6d790 /hw/milkymist-ac97.c
parent9d42e15dc9384e528891c01b036a81a9c4e516e9 (diff)
downloadqemu-dd3d677512ae3f15b2e85254cec10023825210ec.tar.gz
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/milkymist-ac97.c')
-rw-r--r--hw/milkymist-ac97.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/milkymist-ac97.c b/hw/milkymist-ac97.c
index 6c9e318aa2..6104732f7d 100644
--- a/hw/milkymist-ac97.c
+++ b/hw/milkymist-ac97.c
@@ -103,7 +103,7 @@ static uint32_t ac97_read(void *opaque, target_phys_addr_t addr)
break;
default:
- error_report("milkymist_ac97: read access to unkown register 0x"
+ error_report("milkymist_ac97: read access to unknown register 0x"
TARGET_FMT_plx, addr << 2);
break;
}
@@ -152,7 +152,7 @@ static void ac97_write(void *opaque, target_phys_addr_t addr, uint32_t value)
break;
default:
- error_report("milkymist_ac97: write access to unkown register 0x"
+ error_report("milkymist_ac97: write access to unknown register 0x"
TARGET_FMT_plx, addr);
break;
}