diff options
| author | Stefan Weil | 2013-11-10 14:20:16 +0100 |
|---|---|---|
| committer | Michael Tokarev | 2013-12-02 18:02:00 +0100 |
| commit | ac86048bcd41129b18702ba63395f222871804de (patch) | |
| tree | c70e97132cb75c086e86628883c368265f77a27f | |
| parent | Open 2.0 development tree (diff) | |
| download | qemu-ac86048bcd41129b18702ba63395f222871804de.tar.gz qemu-ac86048bcd41129b18702ba63395f222871804de.tar.xz qemu-ac86048bcd41129b18702ba63395f222871804de.zip | |
trace: Remove trace.h from console.h (less dependencies)
This reduces the dependencies on trace.h.
Only two source files which need console.h also need trace.h.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
| -rw-r--r-- | hw/display/vmware_vga.c | 1 | ||||
| -rw-r--r-- | include/ui/console.h | 1 | ||||
| -rw-r--r-- | ui/console.c | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/hw/display/vmware_vga.c b/hw/display/vmware_vga.c index a6a8cdc2e1..aba292ccde 100644 --- a/hw/display/vmware_vga.c +++ b/hw/display/vmware_vga.c @@ -23,6 +23,7 @@ */ #include "hw/hw.h" #include "hw/loader.h" +#include "trace.h" #include "ui/console.h" #include "hw/pci/pci.h" diff --git a/include/ui/console.h b/include/ui/console.h index 98edf413a6..4156a876e1 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -6,7 +6,6 @@ #include "qapi/qmp/qdict.h" #include "qemu/notify.h" #include "monitor/monitor.h" -#include "trace.h" #include "qapi-types.h" #include "qapi/error.h" diff --git a/ui/console.c b/ui/console.c index 199ba69101..61ed2190a3 100644 --- a/ui/console.c +++ b/ui/console.c @@ -27,6 +27,7 @@ #include "qemu/timer.h" #include "qmp-commands.h" #include "sysemu/char.h" +#include "trace.h" //#define DEBUG_CONSOLE #define DEFAULT_BACKSCROLL 512 |
