From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55989) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPtyt-0002A9-IY for qemu-devel@nongnu.org; Mon, 23 Feb 2015 09:27:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPtyo-0002ju-UA for qemu-devel@nongnu.org; Mon, 23 Feb 2015 09:27:31 -0500 Received: from e9.ny.us.ibm.com ([32.97.182.139]:49347) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPtyo-0002i9-RA for qemu-devel@nongnu.org; Mon, 23 Feb 2015 09:27:26 -0500 Received: from /spool/local by e9.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 23 Feb 2015 09:27:24 -0500 Received: from b01cxnp22035.gho.pok.ibm.com (b01cxnp22035.gho.pok.ibm.com [9.57.198.25]) by d01dlp01.pok.ibm.com (Postfix) with ESMTP id 6148838C8041 for ; Mon, 23 Feb 2015 09:27:28 -0500 (EST) Received: from d01av03.pok.ibm.com (d01av03.pok.ibm.com [9.56.224.217]) by b01cxnp22035.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t1NERM7Y28901528 for ; Mon, 23 Feb 2015 14:27:22 GMT Received: from d01av03.pok.ibm.com (localhost [127.0.0.1]) by d01av03.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t1NERMoL017094 for ; Mon, 23 Feb 2015 09:27:22 -0500 From: Stefan Berger Date: Mon, 23 Feb 2015 09:27:16 -0500 Message-Id: <1424701640-27207-1-git-send-email-stefanb@linux.vnet.ibm.com> Subject: [Qemu-devel] [REPOST PATCH 1/5] tpm: Extend sts register to 32 bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Berger , mst@redhat.com More recent TIS specs extend the STS register to 32 bit. While we don't store the TIS interface state, yet, we can extend it without sideeffects. Signed-off-by: Stefan Berger --- hw/tpm/tpm_tis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/tpm/tpm_tis.h b/hw/tpm/tpm_tis.h index 1a0db23..db78d51 100644 --- a/hw/tpm/tpm_tis.h +++ b/hw/tpm/tpm_tis.h @@ -41,7 +41,7 @@ typedef enum { typedef struct TPMLocality { TPMTISState state; uint8_t access; - uint8_t sts; + uint32_t sts; uint32_t inte; uint32_t ints; -- 1.9.3