Made the ACPI GPIO registers initialize to 0xFF instead of 0x00, fixes the ABit BF6, removed the 6BXC, and added the A-Trend ATC6310BXII.

This commit is contained in:
OBattler
2020-05-31 05:37:52 +02:00
parent 228e3f999c
commit bad0eb323a
4 changed files with 39 additions and 42 deletions

View File

@@ -832,6 +832,8 @@ acpi_init(const device_t *info)
timer_add(&dev->timer, acpi_timer_count, dev, 0);
timer_set_delay_u64(&dev->timer, ACPICONST);
dev->regs.gpireg[0] = dev->regs.gpireg[1] = dev->regs.gpireg[2] = 0xff;
return dev;
}