[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] piix_pci: fix piix3_set_irq_pic()
From: |
Isaku Yamahata |
Subject: |
Re: [Qemu-devel] [PATCH] piix_pci: fix piix3_set_irq_pic() |
Date: |
Mon, 23 May 2011 11:36:43 +0900 |
User-agent: |
Mutt/1.5.19 (2009-01-05) |
Thank you.
Acked-by: Isaku Yamahata <address@hidden>
On Mon, May 16, 2011 at 07:50:55PM +0800, TeLeMan wrote:
> If pic_irq is greater than 7, the irq level is always 0 on 32bits.
>
> Signed-off-by: TeLeMan <address@hidden>
> ---
> hw/piix_pci.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/hw/piix_pci.c b/hw/piix_pci.c
> index 7f1c4cc..85a320e 100644
> --- a/hw/piix_pci.c
> +++ b/hw/piix_pci.c
> @@ -312,7 +312,7 @@ static void piix3_set_irq_pic(PIIX3State *piix3,
> int pic_irq)
> {
> qemu_set_irq(piix3->pic[pic_irq],
> !!(piix3->pic_levels &
> - (((1UL << PIIX_NUM_PIRQS) - 1) <<
> + (((1ULL << PIIX_NUM_PIRQS) - 1) <<
> (pic_irq * PIIX_NUM_PIRQS))));
> }
>
> --
> 1.7.3.1.msysgit.0
> --
> SUN OF A BEACH
>
--
yamahata