summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2017-10-24 09:20:42 -0300
committerStefan Berger <stefanb@linux.vnet.ibm.com>2017-10-24 13:37:13 -0400
commit6b287efecf474f66d69a8c2032ffb9bda7313944 (patch)
treee6454c974cefb143e871a53c3d2e4ee799b0dc62
parent3d7196d43bfe12efe98568cb60057e273652b99b (diff)
downloadfocaccia-qemu-6b287efecf474f66d69a8c2032ffb9bda7313944.tar.gz
focaccia-qemu-6b287efecf474f66d69a8c2032ffb9bda7313944.zip
tpm: add missing include
else file including "sysemu/tpm.h" fails to compile:

  In file included from qemu/stubs/tpm.c:2:0:
  qemu/include/sysemu/tpm.h:36:19: error: implicit declaration of function ‘object_resolve_path_type’ [-Werror=implicit-function-declaration]
       Object *obj = object_resolve_path_type("", TYPE_TPM_TIS, NULL);
                     ^~~~~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Richard W.M. Jones <rjones@redhat.com>
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
-rw-r--r--include/sysemu/tpm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sysemu/tpm.h b/include/sysemu/tpm.h
index c8afa179e5..d7a2bd8556 100644
--- a/include/sysemu/tpm.h
+++ b/include/sysemu/tpm.h
@@ -13,6 +13,7 @@
 #define QEMU_TPM_H
 
 #include "qemu/option.h"
+#include "qom/object.h"
 
 typedef struct TPMState TPMState;