Upgrade to 4.4.50-rt62
[kvmfornfv.git] / kernel / drivers / scsi / constants.c
index fa09d4b..2b456ca 100644 (file)
@@ -1181,8 +1181,9 @@ static const char * const snstext[] = {
 
 /* Get sense key string or NULL if not available */
 const char *
-scsi_sense_key_string(unsigned char key) {
-       if (key <= 0xE)
+scsi_sense_key_string(unsigned char key)
+{
+       if (key < ARRAY_SIZE(snstext))
                return snstext[key];
        return NULL;
 }