Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 504c6d1b authored by Vivek Goyal's avatar Vivek Goyal Committed by Jens Axboe
Browse files

amiga floppy: Compile failure fixes



o Compile fixes for amiga floppy driver.

Signed-off-by: default avatarVivek Goyal <vgoyal@redhat.com>
Signed-off-by: default avatarJens Axboe <jaxboe@fusionio.com>
parent 639e2f2a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1347,12 +1347,12 @@ static struct request *set_next_request(void)
	if (fdc_queue == FD_MAX_UNITS)
		fdc_queue = 0;

	for(cnt = FD_MAX_UNITS; cnt > 0, cnt--) {
	for(cnt = FD_MAX_UNITS; cnt > 0; cnt--) {

		if (unit[fdc_queue].type->code == FD_NODRIVE) {
			if (++fdc_queue == FD_MAX_UNITS)
				fdc_queue = 0;
			cotinue;
			continue;
		}

		q = unit[fdc_queue].gendisk->queue;
@@ -1827,7 +1827,6 @@ static int __init amiga_floppy_probe(struct platform_device *pdev)
	return 0;

out_probe:
out_queue:
	free_irq(IRQ_AMIGA_CIAA_TB, NULL);
out_irq2:
	free_irq(IRQ_AMIGA_DSKBLK, NULL);