mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 06:43:53 -06:00
hw/s390x/css: Have css_do_sic() take S390CPU instead of CPUS390XState
"hw/s390x/css.h" is a header used by target-agnostic objects (such hw/s390x/virtio-ccw-gpu.c), thus can not use target-specific types, such CPUS390XState. Have css_do_sic() take S390CPU a pointer, which is target-agnostic. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20231106114500.5269-2-philmd@linaro.org>
This commit is contained in:
parent
2bb53fa2f3
commit
6233759ae1
4 changed files with 6 additions and 4 deletions
|
@ -644,8 +644,9 @@ void css_conditional_io_interrupt(SubchDev *sch)
|
|||
}
|
||||
}
|
||||
|
||||
int css_do_sic(CPUS390XState *env, uint8_t isc, uint16_t mode)
|
||||
int css_do_sic(S390CPU *cpu, uint8_t isc, uint16_t mode)
|
||||
{
|
||||
CPUS390XState *env = &cpu->env;
|
||||
S390FLICState *fs = s390_get_flic();
|
||||
S390FLICStateClass *fsc = s390_get_flic_class(fs);
|
||||
int r;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue