]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
crypto: Remove redundant includes
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 28 Aug 2020 17:05:10 +0000 (10:05 -0700)
committerDaniel P. Berrangé <berrange@redhat.com>
Thu, 10 Sep 2020 10:02:23 +0000 (11:02 +0100)
Both qemu/osdep.h and cipherpriv.h have already been
included by the parent cipher.c.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
crypto/cipher-builtin.c.inc
crypto/cipher-gcrypt.c.inc
crypto/cipher-nettle.c.inc

index 6eafd39da00a2cace2b4ca1819788740aed63fcc..56d45b02276e37e0e3daef3dfd610c39a7e4e3d7 100644 (file)
  *
  */
 
-#include "qemu/osdep.h"
 #include "crypto/aes.h"
 #include "crypto/desrfb.h"
 #include "crypto/xts.h"
-#include "cipherpriv.h"
 
 typedef struct QCryptoCipherBuiltinAESContext QCryptoCipherBuiltinAESContext;
 struct QCryptoCipherBuiltinAESContext {
index 81e4745bff602f6555845d07de773d0262be45fb..a62839914bbfd27447ba2204ff2e75047665131c 100644 (file)
  *
  */
 
-#include "qemu/osdep.h"
 #ifdef CONFIG_QEMU_PRIVATE_XTS
 #include "crypto/xts.h"
 #endif
-#include "cipherpriv.h"
 
 #include <gcrypt.h>
 
index 0677fdfd335bf3928c93f6df16f7c1690853d708..256931a823000f1ff7495c9130621573d133a669 100644 (file)
  *
  */
 
-#include "qemu/osdep.h"
 #ifdef CONFIG_QEMU_PRIVATE_XTS
 #include "crypto/xts.h"
 #endif
-#include "cipherpriv.h"
 
 #include <nettle/nettle-types.h>
 #include <nettle/aes.h>