mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 19:18:23 +00:00
hw/ide/ahci: Clean up local variable shadowing
Fix:
hw/ide/ahci.c:1577:23: error: declaration shadows a local variable [-Werror,-Wshadow]
IDEState *s = &ad->port.ifs[j];
^
hw/ide/ahci.c:1569:29: note: previous declaration is here
void ahci_uninit(AHCIState *s)
^
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231004120019.93101-3-philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: John Snow <jsnow@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
committed by
Markus Armbruster
parent
badf708d69
commit
a5afeefb58
@@ -1622,9 +1622,7 @@ void ahci_uninit(AHCIState *s)
|
||||
AHCIDevice *ad = &s->dev[i];
|
||||
|
||||
for (j = 0; j < 2; j++) {
|
||||
IDEState *s = &ad->port.ifs[j];
|
||||
|
||||
ide_exit(s);
|
||||
ide_exit(&ad->port.ifs[j]);
|
||||
}
|
||||
object_unparent(OBJECT(&ad->port));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user