From 5457352451e9deb7393ebbad6e132445d05ee785 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 25 Sep 2019 06:23:48 +0200 Subject: [PATCH] Fixed the strict round robin mode used by the BusLogic SCSI controllers. --- src/scsi/scsi_x54x.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/scsi/scsi_x54x.c b/src/scsi/scsi_x54x.c index 4be77c2ea..7c61f46f8 100644 --- a/src/scsi/scsi_x54x.c +++ b/src/scsi/scsi_x54x.c @@ -1188,11 +1188,9 @@ x54x_do_mail(x54x_t *dev) } } else { /* Strict round robin mode - only process the current mailbox and advance the pointer if successful. */ -x54x_do_mail_again: if (x54x_mbo_process(dev)) { dev->MailboxOutPosCur++; dev->MailboxOutPosCur %= dev->MailboxCount; - goto x54x_do_mail_again; } } }