next-cube: remove cpu parameter from next_scsi_init()
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Wed, 23 Oct 2024 08:58:20 +0000 (09:58 +0100)
committerThomas Huth <thuth@redhat.com>
Mon, 4 Nov 2024 13:16:11 +0000 (14:16 +0100)
The parameter is not used.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Thomas Huth <huth@tuxfamily.org>
Message-ID: <20241023085852.1061031-5-mark.cave-ayland@ilande.co.uk>
Signed-off-by: Thomas Huth <thuth@redhat.com>
hw/m68k/next-cube.c

index 7a503e0707bd50827601d731ae4906c9ac25e275..08886d432c8321586baf6c7446518dea3542a6fb 100644 (file)
@@ -828,7 +828,7 @@ static void nextscsi_write(void *opaque, uint8_t *buf, int size)
     nextdma_write(opaque, buf, size, NEXTDMA_SCSI);
 }
 
-static void next_scsi_init(DeviceState *pcdev, M68kCPU *cpu)
+static void next_scsi_init(DeviceState *pcdev)
 {
     struct NeXTPC *next_pc = NEXT_PC(pcdev);
     DeviceState *dev;
@@ -1050,7 +1050,7 @@ static void next_cube_init(MachineState *machine)
     /* TODO: */
     /* Network */
     /* SCSI */
-    next_scsi_init(pcdev, cpu);
+    next_scsi_init(pcdev);
 
     /* DMA */
     memory_region_init_io(&m->dmamem, NULL, &next_dma_ops, machine,