next-cube: remove cpu parameter from next_scsi_init()

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>
This commit is contained in:
Mark Cave-Ayland 2024-10-23 09:58:20 +01:00 committed by Thomas Huth
parent 39734497a3
commit f5b47c7aa2
1 changed files with 2 additions and 2 deletions

View File

@ -828,7 +828,7 @@ static void nextscsi_write(void *opaque, uint8_t *buf, int size)
nextdma_write(opaque, buf, size, NEXTDMA_SCSI); 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); struct NeXTPC *next_pc = NEXT_PC(pcdev);
DeviceState *dev; DeviceState *dev;
@ -1050,7 +1050,7 @@ static void next_cube_init(MachineState *machine)
/* TODO: */ /* TODO: */
/* Network */ /* Network */
/* SCSI */ /* SCSI */
next_scsi_init(pcdev, cpu); next_scsi_init(pcdev);
/* DMA */ /* DMA */
memory_region_init_io(&m->dmamem, NULL, &next_dma_ops, machine, memory_region_init_io(&m->dmamem, NULL, &next_dma_ops, machine,