diff options
author | Thomas Huth | 2021-03-26 16:18:48 +0100 |
---|---|---|
committer | Laurent Vivier | 2021-05-02 17:24:50 +0200 |
commit | e06054368cceb59f720e9d7c2ceca84329105758 (patch) | |
tree | bf045cd7e27927eb7b287c863ae04327c5511b06 /hw/rx | |
parent | ui: Fix memory leak in qemu_xkeymap_mapping_table() (diff) | |
download | qemu-e06054368cceb59f720e9d7c2ceca84329105758.tar.gz qemu-e06054368cceb59f720e9d7c2ceca84329105758.tar.xz qemu-e06054368cceb59f720e9d7c2ceca84329105758.zip |
hw: Remove superfluous includes of hw/hw.h
The include/hw/hw.h header only has a prototype for hw_error(),
so it does not make sense to include this in files that do not
use this function.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210326151848.2217216-1-thuth@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/rx')
-rw-r--r-- | hw/rx/rx-gdbsim.c | 1 | ||||
-rw-r--r-- | hw/rx/rx62n.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/hw/rx/rx-gdbsim.c b/hw/rx/rx-gdbsim.c index b1d7c2488f..8c611b0a59 100644 --- a/hw/rx/rx-gdbsim.c +++ b/hw/rx/rx-gdbsim.c @@ -22,7 +22,6 @@ #include "qapi/error.h" #include "qemu-common.h" #include "cpu.h" -#include "hw/hw.h" #include "hw/sysbus.h" #include "hw/loader.h" #include "hw/rx/rx62n.h" diff --git a/hw/rx/rx62n.c b/hw/rx/rx62n.c index 9c34ce14de..31ddccf2cd 100644 --- a/hw/rx/rx62n.c +++ b/hw/rx/rx62n.c @@ -23,7 +23,6 @@ #include "qemu/osdep.h" #include "qapi/error.h" #include "qemu/error-report.h" -#include "hw/hw.h" #include "hw/rx/rx62n.h" #include "hw/loader.h" #include "hw/sysbus.h" |