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

Commit 3910dde6 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide-{floppy,tape,scsi}: 400ns delay is required after executing the command

parent 32b3fe4f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -698,6 +698,7 @@ static ide_startstop_t idefloppy_issue_pc(ide_drive_t *drive,
		/* Issue the packet command */
		hwif->OUTBSYNC(drive, WIN_PACKETCMD,
			       hwif->io_ports.command_addr);
		ndelay(400);
		return (*pkt_xfer_routine) (drive);
	}
}
+1 −0
Original line number Diff line number Diff line
@@ -1058,6 +1058,7 @@ static ide_startstop_t idetape_issue_pc(ide_drive_t *drive,
	} else {
		hwif->OUTBSYNC(drive, WIN_PACKETCMD,
			       hwif->io_ports.command_addr);
		ndelay(400);
		return idetape_transfer_pc(drive);
	}
}
+1 −0
Original line number Diff line number Diff line
@@ -576,6 +576,7 @@ static ide_startstop_t idescsi_issue_pc(ide_drive_t *drive,
		/* Issue the packet command */
		hwif->OUTBSYNC(drive, WIN_PACKETCMD,
			       hwif->io_ports.command_addr);
		ndelay(400);
		return idescsi_transfer_pc(drive);
	}
}