mirror of https://github.com/xemu-project/xemu.git
hw/ide/pci: Unexport bmdma_active_if()
The function is only used inside ide/pci.c, so doesn't need to be exported. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230215112712.23110-18-philmd@linaro.org>
This commit is contained in:
parent
2435503ab7
commit
3e5f247e36
|
@ -104,6 +104,12 @@ const MemoryRegionOps pci_ide_data_le_ops = {
|
||||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static IDEState *bmdma_active_if(BMDMAState *bmdma)
|
||||||
|
{
|
||||||
|
assert(bmdma->bus->retry_unit != (uint8_t)-1);
|
||||||
|
return bmdma->bus->ifs + bmdma->bus->retry_unit;
|
||||||
|
}
|
||||||
|
|
||||||
static void bmdma_start_dma(const IDEDMA *dma, IDEState *s,
|
static void bmdma_start_dma(const IDEDMA *dma, IDEState *s,
|
||||||
BlockCompletionFunc *dma_cb)
|
BlockCompletionFunc *dma_cb)
|
||||||
{
|
{
|
||||||
|
|
|
@ -55,12 +55,6 @@ struct PCIIDEState {
|
||||||
MemoryRegion data_bar[2];
|
MemoryRegion data_bar[2];
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline IDEState *bmdma_active_if(BMDMAState *bmdma)
|
|
||||||
{
|
|
||||||
assert(bmdma->bus->retry_unit != (uint8_t)-1);
|
|
||||||
return bmdma->bus->ifs + bmdma->bus->retry_unit;
|
|
||||||
}
|
|
||||||
|
|
||||||
void bmdma_init(IDEBus *bus, BMDMAState *bm, PCIIDEState *d);
|
void bmdma_init(IDEBus *bus, BMDMAState *bm, PCIIDEState *d);
|
||||||
void bmdma_cmd_writeb(BMDMAState *bm, uint32_t val);
|
void bmdma_cmd_writeb(BMDMAState *bm, uint32_t val);
|
||||||
extern MemoryRegionOps bmdma_addr_ioport_ops;
|
extern MemoryRegionOps bmdma_addr_ioport_ops;
|
||||||
|
|
Loading…
Reference in New Issue