aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/constants.c
diff options
context:
space:
mode:
authorMartin K. Petersen <martin.petersen@oracle.com>2007-02-28 12:37:06 -0500
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2007-03-11 12:21:25 -0400
commit62d42a62770dd66da2d3df693e70f4e5fae1716a (patch)
tree0b4b70c76872f18c2a4594d3fa44a40d6d2915f4 /drivers/scsi/constants.c
parentfa0d34be06213e02a4df29a9d34ca915728a8434 (diff)
[SCSI] constants.c: Update ASC list and make it const
Add missing additional sense code and provide pointer to upstream reference (from Doug Gilbert). Add missing const (from Michael Tokarev). Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/constants.c')
-rw-r--r--drivers/scsi/constants.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/scsi/constants.c b/drivers/scsi/constants.c
index 611487545af4..2a458d66b6ff 100644
--- a/drivers/scsi/constants.c
+++ b/drivers/scsi/constants.c
@@ -404,7 +404,11 @@ struct error_info {
404 const char * text; 404 const char * text;
405}; 405};
406 406
407static struct error_info additional[] = 407/*
408 * The canonical list of T10 Additional Sense Codes is available at:
409 * http://www.t10.org/lists/asc-num.txt
410 */
411static const struct error_info additional[] =
408{ 412{
409 {0x0000, "No additional sense information"}, 413 {0x0000, "No additional sense information"},
410 {0x0001, "Filemark detected"}, 414 {0x0001, "Filemark detected"},
@@ -708,6 +712,7 @@ static struct error_info additional[] =
708 712
709 {0x2F00, "Commands cleared by another initiator"}, 713 {0x2F00, "Commands cleared by another initiator"},
710 {0x2F01, "Commands cleared by power loss notification"}, 714 {0x2F01, "Commands cleared by power loss notification"},
715 {0x2F02, "Commands cleared by device server"},
711 716
712 {0x3000, "Incompatible medium installed"}, 717 {0x3000, "Incompatible medium installed"},
713 {0x3001, "Cannot read medium - unknown format"}, 718 {0x3001, "Cannot read medium - unknown format"},