mirror of https://gitee.com/openkylin/qemu.git
machine: Remove no_tco field
The field is always set to zero, so it is not necessary anymore. 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> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com>
This commit is contained in:
parent
86165b499e
commit
d6b304ba92
|
@ -225,7 +225,7 @@ static void pc_q35_init(MachineState *machine)
|
|||
(pcms->vmport != ON_OFF_AUTO_ON), 0xff0104);
|
||||
|
||||
/* connect pm stuff to lpc */
|
||||
ich9_lpc_pm_init(lpc, pc_machine_is_smm_enabled(pcms), !mc->no_tco);
|
||||
ich9_lpc_pm_init(lpc, pc_machine_is_smm_enabled(pcms), true);
|
||||
|
||||
/* ahci and SATA device, for q35 1 ahci controller is built-in */
|
||||
ahci = pci_create_simple_multifunction(host_bus,
|
||||
|
@ -280,7 +280,6 @@ static void pc_q35_machine_options(MachineClass *m)
|
|||
m->default_machine_opts = "firmware=bios-256k.bin";
|
||||
m->default_display = "std";
|
||||
m->no_floppy = 1;
|
||||
m->no_tco = 0;
|
||||
}
|
||||
|
||||
static void pc_q35_2_6_machine_options(MachineClass *m)
|
||||
|
|
|
@ -84,7 +84,6 @@ struct MachineClass {
|
|||
no_cdrom:1,
|
||||
no_sdcard:1,
|
||||
has_dynamic_sysbus:1,
|
||||
no_tco:1,
|
||||
pci_allow_0_address:1;
|
||||
int is_default;
|
||||
const char *default_machine_opts;
|
||||
|
|
Loading…
Reference in New Issue