diff options
author | John Snow <jsnow@redhat.com> | 2017-07-18 11:47:56 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2017-07-18 11:47:56 -0400 |
commit | bbe3179a13599296807b735797d0e76792021f24 (patch) | |
tree | 4de3cffff7adc627d7595cc02efe693f194ff65c /include | |
parent | 368e708b4c95501574ab11632c7a0b8bb3ddc7e8 (diff) |
ahci: add ahci_get_num_ports
Instead of reaching into the PCI state, allow the AHCIDevice to
respond with how many ports it has.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20170623220926.11479-2-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/ide/ahci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/ide/ahci.h b/include/hw/ide/ahci.h index 0ca7c65820..f866bbf963 100644 --- a/include/hw/ide/ahci.h +++ b/include/hw/ide/ahci.h @@ -372,6 +372,7 @@ void ahci_uninit(AHCIState *s); void ahci_reset(AHCIState *s); +int32_t ahci_get_num_ports(PCIDevice *dev); void ahci_ide_create_devs(PCIDevice *dev, DriveInfo **hd); #define TYPE_SYSBUS_AHCI "sysbus-ahci" |