mirror of https://github.com/xqemu/xqemu.git
pc: Remove enforce-aligned-dimm QOM property
The property is read-only and not used for anything. Cc: Igor Mammedov <imammedo@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
16a9e8a5bc
commit
cdedce0564
11
hw/i386/pc.c
11
hw/i386/pc.c
|
@ -1865,13 +1865,6 @@ static void pc_machine_set_smm(Object *obj, Visitor *v, void *opaque,
|
||||||
visit_type_OnOffAuto(v, &pcms->smm, name, errp);
|
visit_type_OnOffAuto(v, &pcms->smm, name, errp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool pc_machine_get_aligned_dimm(Object *obj, Error **errp)
|
|
||||||
{
|
|
||||||
PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(obj);
|
|
||||||
|
|
||||||
return pcmc->enforce_aligned_dimm;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pc_machine_initfn(Object *obj)
|
static void pc_machine_initfn(Object *obj)
|
||||||
{
|
{
|
||||||
PCMachineState *pcms = PC_MACHINE(obj);
|
PCMachineState *pcms = PC_MACHINE(obj);
|
||||||
|
@ -1906,10 +1899,6 @@ static void pc_machine_initfn(Object *obj)
|
||||||
object_property_set_description(obj, PC_MACHINE_VMPORT,
|
object_property_set_description(obj, PC_MACHINE_VMPORT,
|
||||||
"Enable vmport (pc & q35)",
|
"Enable vmport (pc & q35)",
|
||||||
&error_abort);
|
&error_abort);
|
||||||
|
|
||||||
object_property_add_bool(obj, PC_MACHINE_ENFORCE_ALIGNED_DIMM,
|
|
||||||
pc_machine_get_aligned_dimm,
|
|
||||||
NULL, &error_abort);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pc_machine_reset(void)
|
static void pc_machine_reset(void)
|
||||||
|
|
|
@ -58,7 +58,6 @@ struct PCMachineState {
|
||||||
#define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
|
#define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
|
||||||
#define PC_MACHINE_VMPORT "vmport"
|
#define PC_MACHINE_VMPORT "vmport"
|
||||||
#define PC_MACHINE_SMM "smm"
|
#define PC_MACHINE_SMM "smm"
|
||||||
#define PC_MACHINE_ENFORCE_ALIGNED_DIMM "enforce-aligned-dimm"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PCMachineClass:
|
* PCMachineClass:
|
||||||
|
|
Loading…
Reference in New Issue