From 705ba08d8b7d9e30e6e4e86522552c85a39f10d8 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 20 Jul 2017 22:15:13 +0200 Subject: [PATCH] The AOpen AP53 and the ASUS P/I-P55T2S now correctly use the PIIX3 rather than the PIIX. --- src/model.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model.c b/src/model.c index 204f2de88..4e6887441 100644 --- a/src/model.c +++ b/src/model.c @@ -777,7 +777,7 @@ void at_ap53_init(void) pci_slot(0x13); pci_slot(0x14); i430hx_init(); - piix_init(7, 0x11, 0x12, 0x13, 0x14); + piix3_init(7, 0x11, 0x12, 0x13, 0x14); fdc37c669_init(); device_add(&intel_flash_bxt_device); } @@ -793,7 +793,7 @@ void at_p55t2s_init(void) pci_slot(0x14); pci_slot(0x13); i430hx_init(); - piix_init(7, 0x12, 0x11, 0x14, 0x13); + piix3_init(7, 0x12, 0x11, 0x14, 0x13); pc87306_init(); device_add(&intel_flash_bxt_device); }