提交 8243b046 编写于 作者: S Stefan Weil 提交者: Anthony Liguori

tpm: Fix several compiler warnings (redefined data types)

Signed-off-by: NStefan Weil <sw@weilnetz.de>
Message-id: 1364933691-21197-1-git-send-email-sw@weilnetz.de
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 eabb21aa
...@@ -15,11 +15,8 @@ ...@@ -15,11 +15,8 @@
#include "exec/memory.h" #include "exec/memory.h"
#include "tpm/tpm_tis.h" #include "tpm/tpm_tis.h"
struct TPMDriverOps;
typedef struct TPMDriverOps TPMDriverOps;
/* overall state of the TPM interface */ /* overall state of the TPM interface */
typedef struct TPMState { struct TPMState {
ISADevice busdev; ISADevice busdev;
MemoryRegion mmio; MemoryRegion mmio;
...@@ -32,12 +29,10 @@ typedef struct TPMState { ...@@ -32,12 +29,10 @@ typedef struct TPMState {
char *backend; char *backend;
TPMBackend *be_driver; TPMBackend *be_driver;
} TPMState; };
#define TPM(obj) OBJECT_CHECK(TPMState, (obj), TYPE_TPM_TIS) #define TPM(obj) OBJECT_CHECK(TPMState, (obj), TYPE_TPM_TIS)
typedef void (TPMRecvDataCB)(TPMState *, uint8_t locty);
struct TPMDriverOps { struct TPMDriverOps {
enum TpmType type; enum TpmType type;
/* get a descriptive text of the backend to display to the user */ /* get a descriptive text of the backend to display to the user */
......
...@@ -35,10 +35,10 @@ ...@@ -35,10 +35,10 @@
#define TYPE_TPM_TIS "tpm-tis" #define TYPE_TPM_TIS "tpm-tis"
typedef struct TPMSizedBuffer { struct TPMSizedBuffer {
uint32_t size; uint32_t size;
uint8_t *buffer; uint8_t *buffer;
} TPMSizedBuffer; };
typedef enum { typedef enum {
TPM_TIS_STATE_IDLE = 0, TPM_TIS_STATE_IDLE = 0,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册