Re: [Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-09-03 Thread Avi Kivity
On 08/29/2012 06:01 AM, Julien Grall wrote: This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff like listener. diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c @@ -28,6 +28,7 @@ #include range.h #include ioport.h #include fw_cfg.h

Re: [Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-09-03 Thread Avi Kivity
On 08/29/2012 06:01 AM, Julien Grall wrote: This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff like listener. @@ -55,7 +55,8 @@ struct pci_status { typedef struct PIIX4PMState { PCIDevice dev; -IORange ioport; +

Re: [Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-09-03 Thread Julien Grall
On 09/01/2012 08:44 AM, Jan Kiszka wrote: On 2012-08-29 05:01, Julien Grall wrote: This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff like listener. Doesn't build. As the previous patch series, this patch depends on patches 7

Re: [Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-09-03 Thread Jan Kiszka
On 2012-09-03 14:56, Julien Grall wrote: On 09/01/2012 08:44 AM, Jan Kiszka wrote: On 2012-08-29 05:01, Julien Grall wrote: This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff like listener. Doesn't build. As the previous

Re: [Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-09-03 Thread Julien Grall
On 09/03/2012 12:19 PM, Avi Kivity wrote: On 08/29/2012 06:01 AM, Julien Grall wrote: This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff like listener. diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c @@ -28,6 +28,7 @@ #include range.h

Re: [Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-09-03 Thread Julien Grall
On 09/03/2012 01:56 PM, Jan Kiszka wrote: On 2012-09-03 14:56, Julien Grall wrote: On 09/01/2012 08:44 AM, Jan Kiszka wrote: On 2012-08-29 05:01, Julien Grall wrote: This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff

Re: [Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-09-01 Thread Jan Kiszka
On 2012-08-29 05:01, Julien Grall wrote: This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff like listener. Doesn't build. Jan Signed-off-by: Julien Grall julien.gr...@citrix.com --- hw/acpi_piix4.c | 170

[Qemu-devel] [PATCH V6 2/8] hw/acpi_piix4.c: replace register_ioport*

2012-08-29 Thread Julien Grall
This patch replaces all register_ioport* with the new memory API. It permits to use the new Memory stuff like listener. Signed-off-by: Julien Grall julien.gr...@citrix.com --- hw/acpi_piix4.c | 170 +++ 1 files changed, 134 insertions(+), 36