diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2012-10-18 14:11:36 +0100 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2012-10-20 07:56:22 +0000 |
| commit | 051c02b6c9c8ab5527f8775808625f9de8346006 (patch) | |
| tree | 4f7cd21e0583cb4fa82c4af2f1b789ffced92c02 | |
| parent | e54eba1986f6c4bac2951e7f90a849cd842e25e4 (diff) | |
| download | focaccia-qemu-051c02b6c9c8ab5527f8775808625f9de8346006.tar.gz focaccia-qemu-051c02b6c9c8ab5527f8775808625f9de8346006.zip | |
hw/hw.h: Add include of qemu-log.h
Add an include of qemu-log.h to hw.h, so that device model code has access to these logging functions without the need to directly include qemu-log.h. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
| -rw-r--r-- | hw/hw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/hw.h b/hw/hw.h index 16101de3ce..b337ee3042 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -12,6 +12,7 @@ #include "irq.h" #include "qemu-file.h" #include "vmstate.h" +#include "qemu-log.h" #ifdef NEED_CPU_H #if TARGET_LONG_BITS == 64 |