esp.c: remove zero transfer size check from esp_do_dma()
The TI end of transfer interrupt only occurs when the TC reaches zero and is not related to the SCSI layer transfer. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Tested-by: Helge Deller <deller@gmx.de> Tested-by: Thomas Huth <thuth@redhat.com> Message-Id: <20240112125420.514425-20-mark.cave-ayland@ilande.co.uk> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
This commit is contained in:
parent
942ee6c83f
commit
27bd0cc044
@ -748,7 +748,7 @@ static void esp_do_dma(ESPState *s)
|
||||
* complete the DMA operation immediately. Otherwise defer
|
||||
* until the scsi layer has completed.
|
||||
*/
|
||||
if (esp_get_tc(s) != 0 || s->ti_size == 0) {
|
||||
if (esp_get_tc(s) != 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user