From patchwork Thu Nov 19 10:07:12 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [4/7] lsi53c895a: Fix message code of DISCONNECT Date: Thu, 19 Nov 2009 00:07:12 -0000 From: Jan Kiszka X-Patchwork-Id: 38822 Message-Id: <20091119100712.16666.6924.stgit@mchn012c.ww002.siemens.net> To: qemu-devel@nongnu.org Cc: Laszlo Ast From: Laszlo Ast See SCSI-2, 6.5 Message system description/message codes. Signed-off-by: Laszlo Ast Signed-off-by: Jan Kiszka --- hw/lsi53c895a.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/lsi53c895a.c b/hw/lsi53c895a.c index ee69b0a..2fb928d 100644 --- a/hw/lsi53c895a.c +++ b/hw/lsi53c895a.c @@ -788,7 +788,7 @@ static void lsi_do_msgout(LSIState *s) s->sfbr = msg; switch (msg) { - case 0x00: + case 0x04: DPRINTF("MSG: Disconnect\n"); lsi_disconnect(s); break;