Skip to content
Snippets Groups Projects
Commit aa02f9fe authored by chrfranke's avatar chrfranke
Browse files

Added ATA-8 revision 4c message text

git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@2449 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent 1e81dbbb
No related branches found
No related tags found
No related merge requests found
CHANGELOG for smartmontools
$Id: CHANGELOG,v 1.645 2007/12/20 17:34:18 chrfranke Exp $
$Id: CHANGELOG,v 1.646 2008/01/07 20:07:55 chrfranke Exp $
The most recent version of this file is:
http://smartmontools.cvs.sourceforge.net/smartmontools/sm5/CHANGELOG?view=markup
......@@ -34,6 +34,8 @@ NOTES FOR FUTURE RELEASES: see TODO file.
<DEVELOPERS: ADDITIONS TO THE CHANGE LOG GO JUST BELOW HERE, PLEASE>
[CF] Added ATA-8 revision 4c message text.
[CF] Added compiler.h to cciss_ioctl.h header check to prevent
configure warning.
......
......@@ -36,7 +36,7 @@
#include "extern.h"
#include "utility.h"
const char *atacmds_c_cvsid="$Id: atacmds.cpp,v 1.188 2007/07/26 20:58:50 chrfranke Exp $"
const char *atacmds_c_cvsid="$Id: atacmds.cpp,v 1.189 2008/01/07 20:07:55 chrfranke Exp $"
ATACMDS_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID SCSIATA_H_CVSID UTILITY_H_CVSID;
// to hold onto exit code for atexit routine
......@@ -796,13 +796,14 @@ int ataVersionInfo (const char** description, struct ata_identify_device *drive,
}
}
// Try new ATA-8 minor revision numbers (Table 30 of T13/1699-D Revision 4b)
// Try new ATA-8 minor revision numbers (Table 32 of T13/1699-D Revision 4c)
// (not in actual_ver/minor_str to avoid large sparse tables)
const char *desc;
switch (*minor) {
case 0x0027: desc = "ATA-8-ACS revision 3c"; break;
case 0x0029: desc = "ATA-8-ACS revision 4"; break;
case 0x0033: desc = "ATA-8-ACS revision 3e"; break;
case 0x0039: desc = "ATA-8-ACS revision 4c"; break;
case 0x0042: desc = "ATA-8-ACS revision 3f"; break;
case 0x0052: desc = "ATA-8-ACS revision 3b"; break;
case 0x0107: desc = "ATA-8-ACS revision 2d"; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment