qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-trivial] [PATCH 1/6] audio: set top level latch for each slot


From: Stefan Hajnoczi
Subject: Re: [Qemu-trivial] [PATCH 1/6] audio: set top level latch for each slot
Date: Mon, 24 Mar 2014 14:19:59 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

On Sun, Mar 23, 2014 at 02:58:38PM +0530, Prasad Joshi wrote:
> CSMKeyControll function is supposed to set the top level latch for each
> slot. However, at the moment, it incorrectly updates only the first
> slot. Patch fixes the problem.
> 
> Signed-off-by: Prasad Joshi <address@hidden>
> ---
>  hw/audio/fmopl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Peter: This series has some fixes for QEMU 2.0 since they are bug fixes.

> diff --git a/hw/audio/fmopl.c b/hw/audio/fmopl.c
> index 290a224..eb60c12 100644
> --- a/hw/audio/fmopl.c
> +++ b/hw/audio/fmopl.c
> @@ -725,7 +725,7 @@ INLINE void CSMKeyControll(OPL_CH *CH)
>       OPL_KEYOFF(slot2);
>       /* total level latch */
>       slot1->TLL = slot1->TL + (CH->ksl_base>>slot1->ksl);
> -     slot1->TLL = slot1->TL + (CH->ksl_base>>slot1->ksl);
> +     slot2->TLL = slot2->TL + (CH->ksl_base>>slot2->ksl);
>       /* key on */
>       CH->op1_out[0] = CH->op1_out[1] = 0;
>       OPL_KEYON(slot1);
> -- 
> 1.8.1.2
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]