diff options
author | Christian Brueffer <brueffer@FreeBSD.org> | 2012-07-11 08:24:30 +0000 |
---|---|---|
committer | Christian Brueffer <brueffer@FreeBSD.org> | 2012-07-11 08:24:30 +0000 |
commit | f4bd5f21f09d52befa165e83dc1b0ac19df7953e (patch) | |
tree | 911c1c00b2da27a5034fa23f21ce9c3f4a1708d0 /sys/cam | |
parent | 89b4ba993409957456c2234bb059b8b01ffc6e7e (diff) | |
download | src-f4bd5f21f09d52befa165e83dc1b0ac19df7953e.tar.gz src-f4bd5f21f09d52befa165e83dc1b0ac19df7953e.zip |
- fix description of SECURITY_FREEZE_LOCK (1)
- add missing underscores to SECURITY_DISABLE_PASSWORD
PR: 169763 (1)
Submitted by: Steven Hartland <steven.hartland@multiplay.co.uk>
Reviewed by: mav
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=238363
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/ata/ata_all.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cam/ata/ata_all.c b/sys/cam/ata/ata_all.c index 5faf68ef4c79..5135efbcd7a2 100644 --- a/sys/cam/ata/ata_all.c +++ b/sys/cam/ata/ata_all.c @@ -171,8 +171,8 @@ ata_op_string(struct ata_cmd *cmd) case 0xf2: return ("SECURITY_UNLOCK"); case 0xf3: return ("SECURITY_ERASE_PREPARE"); case 0xf4: return ("SECURITY_ERASE_UNIT"); - case 0xf5: return ("SECURITY_FREE_LOCK"); - case 0xf6: return ("SECURITY DISABLE PASSWORD"); + case 0xf5: return ("SECURITY_FREEZE_LOCK"); + case 0xf6: return ("SECURITY_DISABLE_PASSWORD"); case 0xf8: return ("READ_NATIVE_MAX_ADDRESS"); case 0xf9: return ("SET_MAX_ADDRESS"); } |