we just need a struct name, let's add a forward declaration instead of an include.
Signed-off-by: Michael S. Tsirkin <[email protected]> --- include/hw/s390x/sclp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/hw/s390x/sclp.h b/include/hw/s390x/sclp.h index f9db243..6e65150 100644 --- a/include/hw/s390x/sclp.h +++ b/include/hw/s390x/sclp.h @@ -16,7 +16,8 @@ #include "hw/sysbus.h" #include "hw/qdev.h" -#include "target/s390x/cpu-qom.h" + +typedef struct CPUS390XState CPUS390XState; #define SCLP_CMD_CODE_MASK 0xffff00ff -- MST
