diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-08-28 16:07:50 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-08-31 19:47:43 +0200 |
commit | 73c1970676b27bc8d2229adeb34b8e903c4b873c (patch) | |
tree | bc4cb6f8c77ba59471b5e3069d21d98eae3695a0 /target/s390x | |
parent | 907a2af1fd30958c362c5f1edd05017b9591818f (diff) | |
download | qemu-73c1970676b27bc8d2229adeb34b8e903c4b873c.zip qemu-73c1970676b27bc8d2229adeb34b8e903c4b873c.tar.gz qemu-73c1970676b27bc8d2229adeb34b8e903c4b873c.tar.bz2 |
target/helpers: Remove unnecessary 'qemu/main-loop.h' header
"qemu/main-loop.h" declares functions related to QEMU's
main loop mutex, which these files don't access. Remove
the unused "qemu/main-loop.h" header.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230828221314.18435-8-philmd@linaro.org>
Diffstat (limited to 'target/s390x')
-rw-r--r-- | target/s390x/tcg/crypto_helper.c | 1 | ||||
-rw-r--r-- | target/s390x/tcg/misc_helper.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/target/s390x/tcg/crypto_helper.c b/target/s390x/tcg/crypto_helper.c index 762b277..93aabd2 100644 --- a/target/s390x/tcg/crypto_helper.c +++ b/target/s390x/tcg/crypto_helper.c @@ -13,7 +13,6 @@ */ #include "qemu/osdep.h" -#include "qemu/main-loop.h" #include "qemu/guest-random.h" #include "s390x-internal.h" #include "tcg_s390x.h" diff --git a/target/s390x/tcg/misc_helper.c b/target/s390x/tcg/misc_helper.c index 576157b..e85658c 100644 --- a/target/s390x/tcg/misc_helper.c +++ b/target/s390x/tcg/misc_helper.c @@ -20,7 +20,6 @@ #include "qemu/osdep.h" #include "qemu/cutils.h" -#include "qemu/main-loop.h" #include "cpu.h" #include "s390x-internal.h" #include "qemu/host-utils.h" |