| 87 | } |
| 88 | |
| 89 | void SCSIHD::ModeSelect(scsi_command cmd, cdb_t cdb, span<const uint8_t> buf, int length) |
| 90 | { |
| 91 | if (const string result = scsi_command_util::ModeSelect(cmd, cdb, buf, length, 1 << GetSectorSizeShiftCount()); |
| 92 | !result.empty()) { |
| 93 | LogWarn(result); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void SCSIHD::AddFormatPage(map<int, vector<byte>>& pages, bool changeable) const |
| 98 | { |
nothing calls this directly
no outgoing calls
no test coverage detected