scsi: change positions of SEL, BSY and RST bits.

New positions match better MESH internal bits.
This commit is contained in:
Maxim Poliakovski 2023-01-25 20:53:23 +01:00
parent a189c94980
commit 6b6e92d3d9

View File

@ -41,9 +41,9 @@ enum {
SCSI_CTRL_ATN = 1 << 3,
SCSI_CTRL_ACK = 1 << 4,
SCSI_CTRL_REQ = 1 << 5,
SCSI_CTRL_SEL = 1 << 6,
SCSI_CTRL_BSY = 1 << 7,
SCSI_CTRL_RST = 1 << 8,
SCSI_CTRL_SEL = 1 << 13,
SCSI_CTRL_BSY = 1 << 14,
SCSI_CTRL_RST = 1 << 15,
};
namespace ScsiPhase {