summaryrefslogtreecommitdiff
path: root/include/crypto/init.h
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2016-03-11 09:20:17 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2016-03-22 22:20:16 +0100
commit7136fc1da2690a2a8a6444311484283de0190065 (patch)
treebcad8d018a0270d375104e3b9eb29d0d5d82f407 /include/crypto/init.h
parentbd36a618ccb61ea0fddb92e75f3754c4e1a7fbfe (diff)
downloadqemu-7136fc1da2690a2a8a6444311484283de0190065.tar.gz
include/crypto: Include qapi-types.h or qemu/bswap.h instead of qemu-common.h
qemu-common.h should only be included by .c files. Its file comment explains why: "No header file should depend on qemu-common.h, as this would easily lead to circular header dependencies." Several include/crypto/ headers include qemu-common.h, but either need just qapi-types.h from it, or qemu/bswap.h, or nothing at all. Replace or drop the include accordingly. tests/test-crypto-secret.c now misses qemu/module.h, so include it there. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/crypto/init.h')
-rw-r--r--include/crypto/init.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/crypto/init.h b/include/crypto/init.h
index 4836a37e3f..2513ed0986 100644
--- a/include/crypto/init.h
+++ b/include/crypto/init.h
@@ -21,8 +21,6 @@
#ifndef QCRYPTO_INIT_H__
#define QCRYPTO_INIT_H__
-#include "qemu-common.h"
-
int qcrypto_init(Error **errp);
#endif /* QCRYPTO_INIT_H__ */