Re: [Qemu-devel] [RFC 3/8] uhci: do not use old_portio-style callbacks

2013-01-03 Thread Gerd Hoffmann
On 12/23/12 16:32, Hervé Poussineau wrote: > -static const MemoryRegionPortio uhci_portio[] = { > -{ 0, 32, 2, .write = uhci_ioport_writew, }, > -{ 0, 32, 2, .read = uhci_ioport_readw, }, > -{ 0, 32, 4, .write = uhci_ioport_writel, }, > -{ 0, 32, 4, .read = uhci_ioport_readl, }, > -

[Qemu-devel] [RFC 3/8] uhci: do not use old_portio-style callbacks

2012-12-23 Thread Hervé Poussineau
Signed-off-by: Hervé Poussineau --- hw/usb/hcd-uhci.c | 43 +-- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/hw/usb/hcd-uhci.c b/hw/usb/hcd-uhci.c index d053791..cc47635 100644 --- a/hw/usb/hcd-uhci.c +++ b/hw/usb/hcd-uhci.c @@ -1213,18