target/i386/hvf: fix the declaration of hvf_handle_io
authorWei Liu <liuwe@linux.microsoft.com>
Fri, 21 Feb 2025 08:36:10 +0000 (00:36 -0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 25 Feb 2025 15:18:12 +0000 (16:18 +0100)
commitbc4fa8c3c9b5e2ad945617b667362b71b13495ad
tree327ce990f6f431556761243d0058e69a2a66631f
parent2540917285872ab08f3ce66990983edd19ef4ec0
target/i386/hvf: fix the declaration of hvf_handle_io

There is a conflicting declaration for hvf_handle_io in x86_emu.c.  The type of
the first argument is wrong.  There has never been a problem because the first
argument is not used in hvf_handle_io.

That being said, the code shouldn't contain such an error. Use the proper
declaration from hvf-i386.h.

Take the chance to change the first argument's type to be CPUState.

Signed-off-by: Wei Liu <liuwe@linux.microsoft.com>
Link: https://lore.kernel.org/r/1740126987-8483-3-git-send-email-liuwe@linux.microsoft.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
target/i386/hvf/hvf-i386.h
target/i386/hvf/hvf.c
target/i386/hvf/x86_emu.c