Re: [PATCH 2/6] hw/pci-host/sabre: Remove superfluous address range check

2020-10-19 Thread Mark Cave-Ayland
On 12/10/2020 18:09, Philippe Mathieu-Daudé wrote: The region is registered as 64KiB in sabre_init(): memory_region_init_io(&s->sabre_config, OBJECT(s), &sabre_config_ops, s, "sabre-config", 0x1); Remove the superfluous check. Signed-off-by: Philippe Mathie

[PATCH 2/6] hw/pci-host/sabre: Remove superfluous address range check

2020-10-12 Thread Philippe Mathieu-Daudé
The region is registered as 64KiB in sabre_init(): memory_region_init_io(&s->sabre_config, OBJECT(s), &sabre_config_ops, s, "sabre-config", 0x1); Remove the superfluous check. Signed-off-by: Philippe Mathieu-Daudé --- hw/pci-host/sabre.c | 4 ++-- 1 file chang