diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2022-12-13 13:35:48 +0100 |
---|---|---|
committer | Daniel Henrique Barboza <danielhb413@gmail.com> | 2022-12-21 14:17:55 -0300 |
commit | 31b55f5bdadc74e980e76a932aace79444ab4e2f (patch) | |
tree | 2f5f4b0aa9ca5c26efabd5d1cc03270020ddaebc /include | |
parent | 308fd18142159ceccca6ef7a80fd794722928aa9 (diff) | |
download | qemu-31b55f5bdadc74e980e76a932aace79444ab4e2f.zip qemu-31b55f5bdadc74e980e76a932aace79444ab4e2f.tar.gz qemu-31b55f5bdadc74e980e76a932aace79444ab4e2f.tar.bz2 |
hw/ppc/vof: Do not include the full "cpu.h"
"vof.h" doesn't need the full "cpu.h" to get the target_ulong
definition, including "exec/cpu-defs.h" is enough.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <20221213123550.39302-3-philmd@linaro.org>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/ppc/vof.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/vof.h b/include/hw/ppc/vof.h index f8c0eff..d3f293d 100644 --- a/include/hw/ppc/vof.h +++ b/include/hw/ppc/vof.h @@ -9,7 +9,7 @@ #include "qom/object.h" #include "exec/address-spaces.h" #include "exec/memory.h" -#include "cpu.h" +#include "exec/cpu-defs.h" typedef struct Vof { uint64_t top_addr; /* copied from rma_size */ |