#include "hw/cxl/cxl_host.h"
#include "qemu/guest-random.h"
-static GlobalProperty arm_virt_compat[] = {
+static GlobalProperty arm_virt_compat_defaults[] = {
{ TYPE_VIRTIO_IOMMU_PCI, "aw-bits", "48" },
};
-static const size_t arm_virt_compat_len = G_N_ELEMENTS(arm_virt_compat);
+static const size_t arm_virt_compat_defaults_len =
+ G_N_ELEMENTS(arm_virt_compat_defaults);
/*
* This cannot be called from the virt_machine_class_init() because
* TYPE_VIRT_MACHINE is abstract and mc->compat_props g_ptr_array_new()
* only is called on virt non abstract class init.
*/
-static void arm_virt_compat_set(MachineClass *mc)
+static void arm_virt_compat_default_set(MachineClass *mc)
{
- compat_props_add(mc->compat_props, arm_virt_compat,
- arm_virt_compat_len);
+ compat_props_add(mc->compat_props, arm_virt_compat_defaults,
+ arm_virt_compat_defaults_len);
}
#define DEFINE_VIRT_MACHINE_IMPL(latest, ...) \
const void *data) \
{ \
MachineClass *mc = MACHINE_CLASS(oc); \
- arm_virt_compat_set(mc); \
+ arm_virt_compat_default_set(mc); \
MACHINE_VER_SYM(options, virt, __VA_ARGS__)(mc); \
mc->desc = "QEMU " MACHINE_VER_STR(__VA_ARGS__) " ARM Virtual Machine"; \
MACHINE_VER_DEPRECATION(__VA_ARGS__); \