]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
crypto: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Thu, 2 May 2024 01:30:39 +0000 (19:30 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 May 2024 14:00:41 +0000 (08:00 -0600)
Remove <common.h> from this driver directory and when needed
add missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
20 files changed:
drivers/crypto/ace_sha.c
drivers/crypto/ace_sha.h
drivers/crypto/aspeed/aspeed_acry.c
drivers/crypto/aspeed/aspeed_hace.c
drivers/crypto/fsl/dcp_rng.c
drivers/crypto/fsl/error.c
drivers/crypto/fsl/fsl_blob.c
drivers/crypto/fsl/fsl_hash.c
drivers/crypto/fsl/fsl_mfgprot.c
drivers/crypto/fsl/fsl_rsa.c
drivers/crypto/fsl/jobdesc.c
drivers/crypto/fsl/jr.c
drivers/crypto/fsl/rng.c
drivers/crypto/fsl/sec.c
drivers/crypto/hash/hash-uclass.c
drivers/crypto/hash/hash_sw.c
drivers/crypto/nuvoton/npcm_aes.c
drivers/crypto/nuvoton/npcm_sha.c
drivers/crypto/rsa_mod_exp/mod_exp_sw.c
drivers/crypto/rsa_mod_exp/mod_exp_uclass.c

index 261d3efe84e5827a81d0cdbd20108706b32d892f..0e43e82fc5fa3fb465d169766cdc3de1b42372d1 100644 (file)
@@ -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>
index ad9e81a586c74fdd4ec0c0c39307207c94f0be1e..efc791a4def4eb56e7a8dbfe9f6ea88849477c40 100644 (file)
@@ -8,6 +8,8 @@
 #ifndef __ACE_SHA_H
 #define __ACE_SHA_H
 
+#include  <linux/types.h>
+
 struct exynos_ace_sfr {
        unsigned int    fc_intstat;     /* base + 0 */
        unsigned int    fc_intenset;
index 47a007f633a68b8fd1fbadc4f336b4b017fb5d1d..e3f81ebd5c742dca063cb3929ce54c84b8c97cb3 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2021 ASPEED Technology Inc.
  */
 #include <config.h>
-#include <common.h>
 #include <clk.h>
 #include <dm.h>
 #include <asm/types.h>
index 6b6c8fa658892e212ef1aa240ebe996e18b0bdb4..17cc30a7b54dfe1a70b71b376d33ce4796c0e64f 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2021 ASPEED Technology Inc.
  */
 #include <config.h>
-#include <common.h>
 #include <dm.h>
 #include <clk.h>
 #include <log.h>
index 31706960157c904360650c7642dfc9ee36283e55..6b19c171fcdae4bf607ef81b4c2d8728c79cfaec 100644 (file)
@@ -7,7 +7,6 @@
  * Based on RNGC driver in drivers/char/hw_random/imx-rngc.c in Linux
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <dm.h>
 #include <rng.h>
index c76574919c74f60784edd2036b5c217f11fbc8b3..7b232d94c2a3167b1272f8b7ec8c4de614fdb788 100644 (file)
@@ -7,9 +7,9 @@
  * Derived from error.c file in linux drivers/crypto/caam
  */
 
-#include <common.h>
 #include <log.h>
 #include <malloc.h>
+#include <vsprintf.h>
 #include "desc.h"
 #include "jr.h"
 
index 9b6e4bca062c4a67de25fccbc558c5c9b113bd1d..0ecd6befd2591dc48afc901ef1c100896cc27884 100644 (file)
@@ -4,7 +4,6 @@
  *
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <log.h>
 #include <malloc.h>
index f22f24b60775e6aca58adb4f15ddcdfecb2073b3..79b32e2627c4579816a036efaea2adaff2c939f8 100644 (file)
@@ -4,7 +4,6 @@
  * Copyright 2021 NXP
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <log.h>
 #include <malloc.h>
index 29af79f577dc8d770fcf950b45f7b73d745a6720..7c22f8e012b839b0778a619506294974f03baba4 100644 (file)
@@ -4,7 +4,6 @@
  * Copyright 2017 NXP
  */
 
-#include <common.h>
 #include <errno.h>
 #include <fsl_sec.h>
 #include <memalign.h>
index 335b7fe25acbcf65fe6994c54ca6bdd82c51d190..125a72ae6d32cfb92b672e99bf2b7f38f50ff99a 100644 (file)
@@ -5,7 +5,6 @@
  */
 
 #include <config.h>
-#include <common.h>
 #include <cpu_func.h>
 #include <dm.h>
 #include <log.h>
index d32c1fe5c31aa6137ce40c4676c9cd4798abaa14..55191736931812cecd968995ef74f73b84edb16d 100644 (file)
@@ -8,7 +8,7 @@
  *
  */
 
-#include <common.h>
+#include <config.h>
 #include <cpu_func.h>
 #include <fsl_sec.h>
 #include "desc_constr.h"
index 8ae5c434bdbe70c35de20ace828a03125a59a28e..27e2480894657aacb05ddcefb5c354d49d67c7a0 100644 (file)
@@ -6,7 +6,7 @@
  * Based on CAAM driver in drivers/crypto/caam in Linux
  */
 
-#include <common.h>
+#include <config.h>
 #include <cpu_func.h>
 #include <linux/kernel.h>
 #include <log.h>
index 0636494805218a28d3769a1050285108adc77bdc..786a710f5fb6f1f76cf86d20e8dd2c9e40a518de 100644 (file)
@@ -7,7 +7,6 @@
  */
 
 #include <asm/cache.h>
-#include <common.h>
 #include <cpu_func.h>
 #include <dm.h>
 #include <rng.h>
index 9de30a6112fa2af8d24eaad30b7e7781d9f7bb92..e9c39ddcfd9e4415e3b7e08ece2888b772d2342b 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2014 Freescale Semiconductor, Inc.
  */
 
-#include <common.h>
+#include <config.h>
 #include <linux/libfdt.h>
 #include <fdt_support.h>
 #if CONFIG_SYS_FSL_SEC_COMPAT == 2 || CONFIG_SYS_FSL_SEC_COMPAT >= 4
index 446eb9e56a4f9246db856d96bb4f6082723c540b..5d9f1e0d59bd6c21b41069ac7aa655943ae5b06b 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_HASH
 
-#include <common.h>
 #include <dm.h>
 #include <asm/global_data.h>
 #include <u-boot/hash.h>
index d8065d68ea486fbe70b414fae56af11ae0793e0a..ffd4ab149ffb5acedeaf5db090868078433468b1 100644 (file)
@@ -4,7 +4,6 @@
  * Author: ChiaWei Wang <chiawei_wang@aspeedtech.com>
  */
 #include <config.h>
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <malloc.h>
index 6493ea108ec7fafd92b14adf613cf29907411c64..8d3a30ea918d6a9ec3d40e3ea869c17a9f8f3e9d 100644 (file)
@@ -3,13 +3,13 @@
  * Copyright (c) 2021 Nuvoton Technology Corp.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <uboot_aes.h>
 #include <asm/io.h>
 #include <asm/arch/aes.h>
 #include <asm/arch/otp.h>
 #include <malloc.h>
+#include <time.h>
 
 #define ONE_SECOND 0xC00000
 
index 7ebdfa16f4fcd37d25cd1b87e59edd40edf041de..f06be86ca59e68aa5c2dc072eaff86130067a81f 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2022 Nuvoton Technology Corp.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <hash.h>
 #include <malloc.h>
index 7bed444c3fbf2440c47b97e477ae2f86af4af40a..4f59adc09c9c94c46e3fc300fd5dddc72429b7e7 100644 (file)
@@ -5,7 +5,6 @@
  */
 
 #include <config.h>
-#include <common.h>
 #include <dm.h>
 #include <log.h>
 #include <u-boot/rsa-mod-exp.h>
index 057cc74b10bb4dcdecb70152b59bee247be319d4..107500dd6e079b1bc2dd66ff021eb9604f5278dc 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_MOD_EXP
 
-#include <common.h>
 #include <dm.h>
 #include <asm/global_data.h>
 #include <u-boot/rsa-mod-exp.h>