target/arm/kvm: Unexport kvm_arm_init_cpreg_list

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
Richard Henderson 2023-12-19 17:57:42 +00:00 committed by Peter Maydell
parent c223c67aaa
commit 09ddc01216
2 changed files with 8 additions and 14 deletions

View File

@ -787,11 +787,17 @@ static bool kvm_arm_reg_syncs_via_cpreg_list(uint64_t regidx)
} }
} }
/* Initialize the ARMCPU cpreg list according to the kernel's /**
* kvm_arm_init_cpreg_list:
* @cpu: ARMCPU
*
* Initialize the ARMCPU cpreg list according to the kernel's
* definition of what CPU registers it knows about (and throw away * definition of what CPU registers it knows about (and throw away
* the previous TCG-created cpreg list). * the previous TCG-created cpreg list).
*
* Returns: 0 if success, else < 0 error code
*/ */
int kvm_arm_init_cpreg_list(ARMCPU *cpu) static int kvm_arm_init_cpreg_list(ARMCPU *cpu)
{ {
struct kvm_reg_list rl; struct kvm_reg_list rl;
struct kvm_reg_list *rlp; struct kvm_reg_list *rlp;

View File

@ -39,18 +39,6 @@
void kvm_arm_register_device(MemoryRegion *mr, uint64_t devid, uint64_t group, void kvm_arm_register_device(MemoryRegion *mr, uint64_t devid, uint64_t group,
uint64_t attr, int dev_fd, uint64_t addr_ormask); uint64_t attr, int dev_fd, uint64_t addr_ormask);
/**
* kvm_arm_init_cpreg_list:
* @cpu: ARMCPU
*
* Initialize the ARMCPU cpreg list according to the kernel's
* definition of what CPU registers it knows about (and throw away
* the previous TCG-created cpreg list).
*
* Returns: 0 if success, else < 0 error code
*/
int kvm_arm_init_cpreg_list(ARMCPU *cpu);
/** /**
* write_list_to_kvmstate: * write_list_to_kvmstate:
* @cpu: ARMCPU * @cpu: ARMCPU