Changeset bd5f3b7 in mainline for uspace/lib/scsi/src/spc.c
- Timestamp:
- 2011-08-21T13:07:35Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 00aece0, f1a9e87
- Parents:
- 86a34d3e (diff), a6480d5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/scsi/src/spc.c
r86a34d3e rbd5f3b7 44 44 }; 45 45 46 const char *scsi_sense_key_str[SCSI_SK_LIMIT] = { 47 [SCSI_SK_NO_SENSE] = "No Sense", 48 [SCSI_SK_RECOVERED_ERROR] = "Recovered Error", 49 [SCSI_SK_NOT_READY] = "Not Ready", 50 [SCSI_SK_MEDIUM_ERROR] = "Medium Error", 51 [SCSI_SK_HARDWARE_ERROR] = "Hardware Error", 52 [SCSI_SK_ILLEGAL_REQUEST] = "Illegal Request", 53 [SCSI_SK_UNIT_ATTENTION] = "Unit Attention", 54 [SCSI_SK_DATA_PROTECT] = "Data Protect", 55 [SCSI_SK_BLANK_CHECK] = "Blank Check", 56 [SCSI_SK_VENDOR_SPECIFIC] = "Vendor-specific", 57 [SCSI_SK_COPY_ABORTED] = "Copy Aborted", 58 [SCSI_SK_ABORTED_COMMAND] = "Aborted Command", 59 [SCSI_SK_VOLUME_OVERFLOW] = "Volume Overflow", 60 [SCSI_SK_MISCOMPARE] = "Miscompare" 61 }; 62 46 63 /** Get peripheral device type string. 47 64 * … … 53 70 { 54 71 if (dev_type >= SCSI_DEV_LIMIT || scsi_dev_type_str[dev_type] == NULL) 55 return " <unknown>";72 return "Unknown"; 56 73 57 74 return scsi_dev_type_str[dev_type]; 58 75 } 76 77 /** Get sense key string. 78 * 79 * Return string description of SCSI sense key. 80 * The returned string is valid indefinitely, the caller should 81 * not attempt to free it. 82 */ 83 const char *scsi_get_sense_key_str(unsigned sense_key) 84 { 85 if (sense_key >= SCSI_SK_LIMIT || scsi_sense_key_str[sense_key] == NULL) 86 return "Unknown"; 87 88 return scsi_sense_key_str[sense_key]; 89 } 90
Note:
See TracChangeset
for help on using the changeset viewer.