Re: [PATCH 3/4] piix_ide_reset: Use pci_set_* functions instead of direct access

2022-05-30 Thread Philippe Mathieu-Daudé via
On 28/5/22 22:47, Lev Kujawski wrote: Eliminates the remaining TODOs in hw/ide/piix.c by: - Using pci_set_{size} functions to write the PIIX PCI configuration space instead of manipulating it directly as an array; and - Documenting default register values by reference to the controlling spe

[PATCH 3/4] piix_ide_reset: Use pci_set_* functions instead of direct access

2022-05-28 Thread Lev Kujawski
Eliminates the remaining TODOs in hw/ide/piix.c by: - Using pci_set_{size} functions to write the PIIX PCI configuration space instead of manipulating it directly as an array; and - Documenting default register values by reference to the controlling specification. Signed-off-by: Lev Kujawski