Re: [PATCH 2/7] hw/acpi/ich9: Remove unneeded assignments

2023-01-29 Thread Bernhard Beschow
Am 24. Januar 2023 16:55:37 UTC schrieb Igor Mammedov : >On Sun, 22 Jan 2023 18:07:19 +0100 >Bernhard Beschow wrote: > >> The first thing ich9_pm_iospace_update() does is to set pm->pm_io_base to >> the pm_io_base parameter. >try to explain why 'pm->pm_io_base = 0' was there , what's changed >

Re: [PATCH 2/7] hw/acpi/ich9: Remove unneeded assignments

2023-01-24 Thread Igor Mammedov
On Sun, 22 Jan 2023 18:07:19 +0100 Bernhard Beschow wrote: > The first thing ich9_pm_iospace_update() does is to set pm->pm_io_base to > the pm_io_base parameter. try to explain why 'pm->pm_io_base = 0' was there , what's changed and then why it's no longer needed. > The pm_io_base parameter's

[PATCH 2/7] hw/acpi/ich9: Remove unneeded assignments

2023-01-22 Thread Bernhard Beschow
The first thing ich9_pm_iospace_update() does is to set pm->pm_io_base to the pm_io_base parameter. The pm_io_base parameter's value is the old one of pm->pm_io_base. Signed-off-by: Bernhard Beschow --- hw/acpi/ich9.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hw/acpi