From: aliguori Date: Thu, 5 Mar 2009 19:01:46 +0000 (+0000) Subject: lsi: add ISTAT1 register read (Ryan Harper) X-Git-Tag: xen-3.4.0-rc2~1^2~20^2~28 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c0024a82577d14564b300dad440437d352ae6a26;p=qemu-xen-3.4-testing.git lsi: add ISTAT1 register read (Ryan Harper) SLES10 SP2 installer complains when probing a scsi disk and exits qemu when failing to read one of the registers. lsi_scsi: error: readb 0x15 -- Ryan Harper Software Engineer; Linux Technology Center IBM Corp., Austin, Tx ryanh@us.ibm.com diffstat output: lsi53c895a.c | 2 ++ 1 files changed, 2 insertions(+) Signed-off-by: Ryan Harper --- Subject: [PATCH] lsi: add ISTAT1 register read From: Ryan Harper Cc: kvm@vger.kernel.org SLES10 SP2 installer complains when probing a scsi disk and exits qemu when failing to read one of the registers. lsi_scsi: error: readb 0x15 Signed-off-by: Ryan Harper Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/branches/stable_0_10_0@6690 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/lsi53c895a.c b/hw/lsi53c895a.c index 36ee28e7..1f4f8b7e 100644 --- a/hw/lsi53c895a.c +++ b/hw/lsi53c895a.c @@ -1369,6 +1369,8 @@ static uint8_t lsi_reg_readb(LSIState *s, int offset) CASE_GET_REG32(dsa, 0x10) case 0x14: /* ISTAT0 */ return s->istat0; + case 0x15: /* ISTAT1 */ + return s->istat1; case 0x16: /* MBOX0 */ return s->mbox0; case 0x17: /* MBOX1 */