summaryrefslogtreecommitdiffstats
path: root/hw/ppc/spapr_iommu.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2013-04-29 18:33:52 +0000
committerAlexander Graf <agraf@suse.de>2013-05-06 17:22:47 +0200
commitb55519a0f29fca0ef7ebc5d87ee4bfa7304dc219 (patch)
tree24b375279c19b2850d66c03e9af6da207bc170c8 /hw/ppc/spapr_iommu.c
parentd4261662b67b48e52f747ee1e3c31cf873c5c982 (diff)
downloadhqemu-b55519a0f29fca0ef7ebc5d87ee4bfa7304dc219.zip
hqemu-b55519a0f29fca0ef7ebc5d87ee4bfa7304dc219.tar.gz
pseries: Fix debug message for out-of-bounds address in H_PUT_TCE
Due to a brain outage, this message says "out-of-boards" instead of "out-of-bounds". Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/ppc/spapr_iommu.c')
-rw-r--r--hw/ppc/spapr_iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/spapr_iommu.c b/hw/ppc/spapr_iommu.c
index c6aa4fe..e1fe941 100644
--- a/hw/ppc/spapr_iommu.c
+++ b/hw/ppc/spapr_iommu.c
@@ -205,7 +205,7 @@ static target_ulong put_tce_emu(sPAPRTCETable *tcet, target_ulong ioba,
sPAPRTCE *tcep;
if (ioba >= tcet->window_size) {
- hcall_dprintf("spapr_vio_put_tce on out-of-boards IOBA 0x"
+ hcall_dprintf("spapr_vio_put_tce on out-of-bounds IOBA 0x"
TARGET_FMT_lx "\n", ioba);
return H_PARAMETER;
}
OpenPOWER on IntegriCloud