From 38dad9e574746981dfbac52b3bbbd6d894f31d26 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Mon, 11 Feb 2013 16:41:25 +0000 Subject: qemu-log: Rename CPULogItem, cpu_log_items to QEMULogItem, qemu_log_items MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename the typedef CPULogItem and the public array cpu_log_items to names that better reflect the fact that the qemu_log functionality isn't restricted to TCG CPU debug logs any more. Signed-off-by: Peter Maydell Reviewed-by: Andreas Färber Signed-off-by: Blue Swirl --- include/qemu/log.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/qemu') diff --git a/include/qemu/log.h b/include/qemu/log.h index 5dcbe11d47..5a46555112 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -135,13 +135,13 @@ static inline void qemu_log_try_set_file(FILE *f) } /* define log items */ -typedef struct CPULogItem { +typedef struct QEMULogItem { int mask; const char *name; const char *help; -} CPULogItem; +} QEMULogItem; -extern const CPULogItem cpu_log_items[]; +extern const QEMULogItem qemu_log_items[]; /* This is the function that actually does the work of * changing the log level; it should only be accessed via -- cgit v1.2.3