Revision 43a52ce6

b/hw/i386/pc_piix.c
263 263
    pc_init_pci_1_4(args);
264 264
}
265 265

  
266
/* PC machine init function for pc-1.1 to pc-1.2 */
266
/* PC machine init function for pc-0.14 to pc-1.2 */
267 267
static void pc_init_pci_1_2(QEMUMachineInitArgs *args)
268 268
{
269 269
    disable_kvm_pv_eoi();
270 270
    pc_init_pci_1_3(args);
271 271
}
272 272

  
273
/* PC machine init function for pc-0.14 to pc-1.0 */
274
static void pc_init_pci_1_0(QEMUMachineInitArgs *args)
275
{
276
    pc_init_pci_1_2(args);
277
}
278

  
279 273
/* PC init function for pc-0.10 to pc-0.13, and reused by xenfv */
280 274
static void pc_init_pci_no_kvmclock(QEMUMachineInitArgs *args)
281 275
{
......
485 479
static QEMUMachine pc_machine_v1_0 = {
486 480
    .name = "pc-1.0",
487 481
    .desc = "Standard PC",
488
    .init = pc_init_pci_1_0,
482
    .init = pc_init_pci_1_2,
489 483
    .max_cpus = 255,
490 484
    .compat_props = (GlobalProperty[]) {
491 485
        PC_COMPAT_1_0,
......
501 495
static QEMUMachine pc_machine_v0_15 = {
502 496
    .name = "pc-0.15",
503 497
    .desc = "Standard PC",
504
    .init = pc_init_pci_1_0,
498
    .init = pc_init_pci_1_2,
505 499
    .max_cpus = 255,
506 500
    .compat_props = (GlobalProperty[]) {
507 501
        PC_COMPAT_0_15,
......
534 528
static QEMUMachine pc_machine_v0_14 = {
535 529
    .name = "pc-0.14",
536 530
    .desc = "Standard PC",
537
    .init = pc_init_pci_1_0,
531
    .init = pc_init_pci_1_2,
538 532
    .max_cpus = 255,
539 533
    .compat_props = (GlobalProperty[]) {
540 534
        PC_COMPAT_0_14, 

Also available in: Unified diff