[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-stable] PING Re: [PATCH for-1.6] adlib: sort offsets in portio reg
From: |
Paolo Bonzini |
Subject: |
[Qemu-stable] PING Re: [PATCH for-1.6] adlib: sort offsets in portio registration |
Date: |
Fri, 30 Aug 2013 17:45:03 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130805 Thunderbird/17.0.8 |
Il 14/08/2013 11:49, Hervé Poussineau ha scritto:
> This fixes the following assert when -device adlib is used:
> ioport.c:240: portio_list_add: Assertion `pio->offset >= off_last' failed.
>
> Signed-off-by: Hervé Poussineau <address@hidden>
> ---
> hw/audio/adlib.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/audio/adlib.c b/hw/audio/adlib.c
> index 0421d47..db4a953 100644
> --- a/hw/audio/adlib.c
> +++ b/hw/audio/adlib.c
> @@ -284,9 +284,9 @@ static void Adlib_fini (AdlibState *s)
> }
>
> static MemoryRegionPortio adlib_portio_list[] = {
> - { 0x388, 4, 1, .read = adlib_read, .write = adlib_write, },
> { 0, 4, 1, .read = adlib_read, .write = adlib_write, },
> { 0, 2, 1, .read = adlib_read, .write = adlib_write, },
> + { 0x388, 4, 1, .read = adlib_read, .write = adlib_write, },
> PORTIO_END_OF_LIST(),
> };
>
>
Ping, and Cc to qemu-stable
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-stable] PING Re: [PATCH for-1.6] adlib: sort offsets in portio registration,
Paolo Bonzini <=