mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
ide: export needed ide-pci functions for split
Patchworks-ID: 35300 Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
65c0f1351f
commit
3e7e1558af
2 changed files with 20 additions and 10 deletions
10
hw/ide/pci.h
10
hw/ide/pci.h
|
@ -15,4 +15,14 @@ typedef struct PCIIDEState {
|
|||
uint32_t secondary;
|
||||
} PCIIDEState;
|
||||
|
||||
void bmdma_cmd_writeb(void *opaque, uint32_t addr, uint32_t val);
|
||||
uint32_t bmdma_addr_readb(void *opaque, uint32_t addr);
|
||||
void bmdma_addr_writeb(void *opaque, uint32_t addr, uint32_t val);
|
||||
uint32_t bmdma_addr_readw(void *opaque, uint32_t addr);
|
||||
void bmdma_addr_writew(void *opaque, uint32_t addr, uint32_t val);
|
||||
uint32_t bmdma_addr_readl(void *opaque, uint32_t addr);
|
||||
void bmdma_addr_writel(void *opaque, uint32_t addr, uint32_t val);
|
||||
void pci_ide_save(QEMUFile* f, void *opaque);
|
||||
int pci_ide_load(QEMUFile* f, void *opaque, int version_id);
|
||||
void pci_ide_create_devs(PCIDevice *dev, DriveInfo **hd_table);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue