diff options
author | Philippe Mathieu-Daudé | 2019-04-12 18:54:09 +0200 |
---|---|---|
committer | Peter Maydell | 2019-04-29 18:57:21 +0200 |
commit | 8a08cc71d29b7ff43d91d37303f40aa89f65c617 (patch) | |
tree | a6ffc89c66c3af88c3e459c7c4d4b042e08dc3d5 /hw | |
parent | hw/devices: Move TC6393XB declarations into a new header (diff) | |
download | qemu-8a08cc71d29b7ff43d91d37303f40aa89f65c617.tar.gz qemu-8a08cc71d29b7ff43d91d37303f40aa89f65c617.tar.xz qemu-8a08cc71d29b7ff43d91d37303f40aa89f65c617.zip |
hw/devices: Move Blizzard declarations into a new header
Add an entries the Blizzard device in MAINTAINERS.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190412165416.7977-6-philmd@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/arm/nseries.c | 1 | ||||
-rw-r--r-- | hw/display/blizzard.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/hw/arm/nseries.c b/hw/arm/nseries.c index 2b710c3d49..ef09b3bf79 100644 --- a/hw/arm/nseries.c +++ b/hw/arm/nseries.c @@ -31,6 +31,7 @@ #include "hw/boards.h" #include "hw/i2c/i2c.h" #include "hw/devices.h" +#include "hw/display/blizzard.h" #include "hw/misc/tmp105.h" #include "hw/block/flash.h" #include "hw/hw.h" diff --git a/hw/display/blizzard.c b/hw/display/blizzard.c index 291abe6fca..471bd0ed99 100644 --- a/hw/display/blizzard.c +++ b/hw/display/blizzard.c @@ -21,7 +21,7 @@ #include "qemu/osdep.h" #include "qemu-common.h" #include "ui/console.h" -#include "hw/devices.h" +#include "hw/display/blizzard.h" #include "ui/pixel_ops.h" typedef void (*blizzard_fn_t)(uint8_t *, const uint8_t *, unsigned int); |