tpm: add missing include
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Tue, 24 Oct 2017 12:20:42 +0000 (09:20 -0300)
committerStefan Berger <stefanb@linux.vnet.ibm.com>
Tue, 24 Oct 2017 17:37:13 +0000 (13:37 -0400)
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>
include/sysemu/tpm.h

index c8afa179e528232e216fccc31e9df5936dded280..d7a2bd85562523367c24ec07feed7c77227da7c1 100644 (file)
@@ -13,6 +13,7 @@
 #define QEMU_TPM_H
 
 #include "qemu/option.h"
+#include "qom/object.h"
 
 typedef struct TPMState TPMState;