qemu-trivial
[Top][All Lists]
Advanced

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

Re: [PATCH 3/3] hw/pci-host/sh_pcic: Replace magic value by proper defin


From: Yoshinori Sato
Subject: Re: [PATCH 3/3] hw/pci-host/sh_pcic: Replace magic value by proper definition
Date: Sun, 15 Oct 2023 00:10:06 +0900
User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM-LB/1.14.9 (Gojō) APEL-LB/10.8 EasyPG/1.0.0 Emacs/28.2 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)

On Thu, 12 Oct 2023 13:12:37 +0900,
Philippe Mathieu-Daudé wrote:
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Yoshinori Sato <ysato@users.sourceforge.jp>

> ---
>  hw/pci-host/sh_pci.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/pci-host/sh_pci.c b/hw/pci-host/sh_pci.c
> index 580e273d96..4edebced5e 100644
> --- a/hw/pci-host/sh_pci.c
> +++ b/hw/pci-host/sh_pci.c
> @@ -40,7 +40,7 @@ struct SHPCIState {
>      PCIHostState parent_obj;
>  
>      PCIDevice *dev;
> -    qemu_irq irq[4];
> +    qemu_irq irq[PCI_NUM_PINS];
>      MemoryRegion memconfig_p4;
>      MemoryRegion memconfig_a7;
>      MemoryRegion isa;
> @@ -131,7 +131,8 @@ static void sh_pcic_host_realize(DeviceState *dev, Error 
> **errp)
>                                       s->irq,
>                                       get_system_memory(),
>                                       get_system_io(),
> -                                     PCI_DEVFN(0, 0), 4, TYPE_PCI_BUS);
> +                                     PCI_DEVFN(0, 0), PCI_NUM_PINS,
> +                                     TYPE_PCI_BUS);
>      memory_region_init_io(&s->memconfig_p4, OBJECT(s), &sh_pci_reg_ops, s,
>                            "sh_pci", 0x224);
>      memory_region_init_alias(&s->memconfig_a7, OBJECT(s), "sh_pci.2",
> -- 
> 2.41.0
> 



reply via email to

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