From f9ab582ddccecb5141c80a71645500cfc1500bb4 Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Thu, 17 Feb 2022 23:01:59 +0100 Subject: [PATCH] Removed assertion --- src/raspberrypi/controllers/scsidev_ctrl.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/raspberrypi/controllers/scsidev_ctrl.cpp b/src/raspberrypi/controllers/scsidev_ctrl.cpp index 2dc73e9a..59ebf807 100644 --- a/src/raspberrypi/controllers/scsidev_ctrl.cpp +++ b/src/raspberrypi/controllers/scsidev_ctrl.cpp @@ -894,8 +894,6 @@ bool SCSIDEV::XferOut(bool cont) return SASIDEV::XferOut(cont); } - ASSERT(ctrl.phase == BUS::dataout); - PrimaryDevice *device = dynamic_cast(ctrl.unit[GetEffectiveLun()]); if (device && ctrl.cmd[0] == scsi_defs::eCmdWrite6) { return device->WriteBytes(ctrl.buffer, scsi.bytes_to_transfer);