Changeset 12927 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Oct 2, 2008 11:34:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/Debug.cpp
r12552 r12927 896 896 * Don't allocate the string as we use this function in Log() statements. 897 897 */ 898 const char * constATACmdText(uint8_t uCmd)898 const char * ATACmdText(uint8_t uCmd) 899 899 { 900 900 AssertCompile(RT_ELEMENTS(g_apszATACmdNames) == (1 << (8*sizeof(uCmd)))); … … 906 906 * Don't allocate the string as we use this function in Log() statements. 907 907 */ 908 const char * constSCSICmdText(uint8_t uCmd)908 const char * SCSICmdText(uint8_t uCmd) 909 909 { 910 910 AssertCompile(RT_ELEMENTS(g_apszSCSICmdNames) == (1 << (8*sizeof(uCmd)))); … … 916 916 * Don't allocate the string as we use this function in Log() statements. 917 917 */ 918 const char * constSCSISenseText(uint8_t uSense)918 const char * SCSISenseText(uint8_t uSense) 919 919 { 920 920 if (uSense < RT_ELEMENTS(g_apszSCSISenseNames)) … … 928 928 * Don't allocate the string as we use this function in Log() statements. 929 929 */ 930 const char * constSCSISenseExtText(uint8_t uASC, uint8_t uASCQ)930 const char * SCSISenseExtText(uint8_t uASC, uint8_t uASCQ) 931 931 { 932 932 unsigned iIdx;
Note:
See TracChangeset
for help on using the changeset viewer.