summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2013-02-11 16:41:23 +0000
committerBlue Swirl <blauwirbel@gmail.com>2013-02-16 10:44:44 +0000
commit24537a01910f110fe3e343c13df13e48f7968a9e (patch)
treeb096f048bd4116bea4f781c33276a7b5ecb9f47f /hw
parent4fde1eba0f98779d4fdb64818071f72bb1672438 (diff)
downloadqemu-24537a01910f110fe3e343c13df13e48f7968a9e.tar.gz
qemu-log: Rename the public-facing cpu_set_log function to qemu_set_log
Rename the public-facing function cpu_set_log to qemu_set_log. This requires us to rename the internal-only qemu_set_log() to do_qemu_set_log(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/ppc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc.c b/hw/ppc.c
index c52e22f708..6053bd5652 100644
--- a/hw/ppc.c
+++ b/hw/ppc.c
@@ -1189,7 +1189,7 @@ void PPC_debug_write (void *opaque, uint32_t addr, uint32_t val)
break;
case 2:
printf("Set loglevel to %04" PRIx32 "\n", val);
- cpu_set_log(val | 0x100);
+ qemu_set_log(val | 0x100);
break;
}
}