mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
arm: Replace type_register() with type_register_static()
Replace type_register() with type_register_static() because type_register() will be deprecated. Signed-off-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Link: https://lore.kernel.org/r/20241029085934.2799066-2-zhao1.liu@intel.com
This commit is contained in:
parent
feccfa77be
commit
f345627668
4 changed files with 5 additions and 5 deletions
|
@ -2065,8 +2065,8 @@ static const TypeInfo smmuv3_iommu_memory_region_info = {
|
|||
|
||||
static void smmuv3_register_types(void)
|
||||
{
|
||||
type_register(&smmuv3_type_info);
|
||||
type_register(&smmuv3_iommu_memory_region_info);
|
||||
type_register_static(&smmuv3_type_info);
|
||||
type_register_static(&smmuv3_iommu_memory_region_info);
|
||||
}
|
||||
|
||||
type_init(smmuv3_register_types)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue