aboutsummaryrefslogtreecommitdiff
path: root/hw/ide/macio.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2020-05-12 21:49:17 +0200
committerKevin Wolf <kwolf@redhat.com>2020-06-17 14:53:39 +0200
commitae0cebd71215188951902c5ccdd8685e431c286c (patch)
treef8f9ecf070183afdec102955670a0e7fa3bbd5cf /hw/ide/macio.c
parent5c24bce3056ff209a1ecc50ff4b7e65b85ad8e74 (diff)
downloadqemu-ae0cebd71215188951902c5ccdd8685e431c286c.zip
qemu-ae0cebd71215188951902c5ccdd8685e431c286c.tar.gz
qemu-ae0cebd71215188951902c5ccdd8685e431c286c.tar.bz2
hw/ide: Make IDEDMAOps handlers take a const IDEDMA pointer
Handlers don't need to modify the IDEDMA structure. Make it const. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200512194917.15807-1-philmd@redhat.com> Acked-by: John Snow <jsnow@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/ide/macio.c')
-rw-r--r--hw/ide/macio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/ide/macio.c b/hw/ide/macio.c
index 30af0e9..62a599a 100644
--- a/hw/ide/macio.c
+++ b/hw/ide/macio.c
@@ -376,17 +376,17 @@ static void macio_ide_reset(DeviceState *dev)
ide_bus_reset(&d->bus);
}
-static int ide_nop_int(IDEDMA *dma, bool is_write)
+static int ide_nop_int(const IDEDMA *dma, bool is_write)
{
return 0;
}
-static int32_t ide_nop_int32(IDEDMA *dma, int32_t l)
+static int32_t ide_nop_int32(const IDEDMA *dma, int32_t l)
{
return 0;
}
-static void ide_dbdma_start(IDEDMA *dma, IDEState *s,
+static void ide_dbdma_start(const IDEDMA *dma, IDEState *s,
BlockCompletionFunc *cb)
{
MACIOIDEState *m = container_of(dma, MACIOIDEState, dma);