From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Wilcox Subject: [PATCH 3/5] [SCSI] Fix printing of two-byte messages Date: Thu, 15 Dec 2005 16:22:01 -0500 Message-ID: <1134681721901-git-send-email-matthew@wil.cx> References: <20051215205856.GA2361@parisc-linux.org> Reply-To: Matthew Wilcox Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Return-path: Received: from mx2-old.magma.ca ([206.191.0.250]:25791 "EHLO mx2.magma.ca") by vger.kernel.org with ESMTP id S1751098AbVLOVWE (ORCPT ); Thu, 15 Dec 2005 16:22:04 -0500 In-Reply-To: <20051215205856.GA2361@parisc-linux.org> Sender: linux-scsi-owner@vger.kernel.org List-Id: linux-scsi@vger.kernel.org To: linux-scsi@vger.kernel.org Cc: Matthew Wilcox A missing comma meant that "Ordered Queue Tag" and "Ignore Wide Residue" were being concatenated together. Signed-off-by: Matthew Wilcox --- drivers/scsi/scsi_transport_spi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) bf55571883d8fc9e9b1e2fd238d9760dacb4f914 diff --git a/drivers/scsi/scsi_transport_spi.c b/drivers/scsi/scsi_transport_spi.c index 59fb69b..8cc5dff 100644 --- a/drivers/scsi/scsi_transport_spi.c +++ b/drivers/scsi/scsi_transport_spi.c @@ -1060,7 +1060,7 @@ static const char * const one_byte_msgs[ #define NO_ONE_BYTE_MSGS (sizeof(one_byte_msgs) / sizeof (const char *)) static const char * const two_byte_msgs[] = { -/* 0x20 */ "Simple Queue Tag", "Head of Queue Tag", "Ordered Queue Tag" +/* 0x20 */ "Simple Queue Tag", "Head of Queue Tag", "Ordered Queue Tag", /* 0x23 */ "Ignore Wide Residue" }; #define NO_TWO_BYTE_MSGS (sizeof(two_byte_msgs) / sizeof (const char *)) -- 0.99.9.GIT