diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-02-11 16:41:22 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-02-16 10:44:27 +0000 |
commit | 4fde1eba0f98779d4fdb64818071f72bb1672438 (patch) | |
tree | 408a041b912ad03c221697db374ff8154fc3989d /qemu-log.c | |
parent | 59a6fa6e67d2335d867c66c59d992847e5b62879 (diff) |
qemu-log: Rename cpu_str_to_log_mask to qemu_str_to_log_mask
Rename cpu_str_to_log_mask() to qemu_str_to_log_mask(), since
the qemu_log functionality is no longer restricted to TCG CPU
debug logging.
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 'qemu-log.c')
-rw-r--r-- | qemu-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-log.c b/qemu-log.c index 786d335893..10a8581f1f 100644 --- a/qemu-log.c +++ b/qemu-log.c @@ -136,7 +136,7 @@ static int cmp1(const char *s1, int n, const char *s2) } /* takes a comma separated list of log masks. Return 0 if error. */ -int cpu_str_to_log_mask(const char *str) +int qemu_str_to_log_mask(const char *str) { const CPULogItem *item; int mask; |