diff options
| author | Tom Rini <[email protected]> | 2024-05-01 19:30:39 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-05-07 08:00:41 -0600 |
| commit | dcd59134c64ef369716cd2f78a8dbe765bec331d (patch) | |
| tree | c915f3cf082af712c407296f892e3220fbed33b3 /drivers/crypto/ace_sha.c | |
| parent | 910522fc9cb45ab0331a641f84b06dfe48618894 (diff) | |
crypto: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/crypto/ace_sha.c')
| -rw-r--r-- | drivers/crypto/ace_sha.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/crypto/ace_sha.c b/drivers/crypto/ace_sha.c index 261d3efe84e..0e43e82fc5f 100644 --- a/drivers/crypto/ace_sha.c +++ b/drivers/crypto/ace_sha.c @@ -3,10 +3,12 @@ * Advanced Crypto Engine - SHA Firmware * Copyright (c) 2012 Samsung Electronics */ -#include <common.h> + +#include <config.h> #include "ace_sha.h" #include <log.h> #include <rand.h> +#include <linux/string.h> #ifdef CONFIG_SHA_HW_ACCEL #include <u-boot/sha256.h> |
