From 657bd30c6b3ee8c80a94ebfe7c8b5c4b027ae038 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Tue, 13 Feb 2024 00:44:47 +0100 Subject: [PATCH] rng: eliminate common.h include from RNG drivers Usage of common.h is deprecated. * Remove common.h from RNG drivers. * Sort includes. * Add time.h to sandbox driver. * Add linux/types.h to rng.h to provide size_t. Signed-off-by: Heinrich Schuchardt --- drivers/rng/arm_rndr.c | 3 +-- drivers/rng/iproc_rng200.c | 3 +-- drivers/rng/meson-rng.c | 1 - drivers/rng/msm_rng.c | 5 ++--- drivers/rng/npcm_rng.c | 1 - drivers/rng/optee_rng.c | 2 -- drivers/rng/rng-uclass.c | 1 - drivers/rng/rockchip_rng.c | 6 +++--- drivers/rng/sandbox_rng.c | 3 +-- drivers/rng/smccc_trng.c | 1 - drivers/rng/stm32_rng.c | 4 +--- include/rng.h | 2 ++ 12 files changed, 11 insertions(+), 21 deletions(-) diff --git a/drivers/rng/arm_rndr.c b/drivers/rng/arm_rndr.c index 4512330e68..bf54aec4f1 100644 --- a/drivers/rng/arm_rndr.c +++ b/drivers/rng/arm_rndr.c @@ -9,11 +9,10 @@ #define LOG_CATEGORY UCLASS_RNG -#include #include -#include #include #include +#include #define DRIVER_NAME "arm-rndr" diff --git a/drivers/rng/iproc_rng200.c b/drivers/rng/iproc_rng200.c index 85ac15bf9c..4c49aa9e44 100644 --- a/drivers/rng/iproc_rng200.c +++ b/drivers/rng/iproc_rng200.c @@ -5,11 +5,10 @@ * Driver for Raspberry Pi hardware random number generator */ -#include #include -#include #include #include +#include #define usleep_range(a, b) udelay((b)) diff --git a/drivers/rng/meson-rng.c b/drivers/rng/meson-rng.c index fd2988e91b..49037d1165 100644 --- a/drivers/rng/meson-rng.c +++ b/drivers/rng/meson-rng.c @@ -5,7 +5,6 @@ * Driver for Amlogic hardware random number generator */ -#include #include #include #include diff --git a/drivers/rng/msm_rng.c b/drivers/rng/msm_rng.c index 29e7354ece..658c153d3e 100644 --- a/drivers/rng/msm_rng.c +++ b/drivers/rng/msm_rng.c @@ -9,12 +9,11 @@ * Based on Linux driver */ -#include #include -#include #include -#include #include +#include +#include /* Device specific register offsets */ #define PRNG_DATA_OUT 0x0000 diff --git a/drivers/rng/npcm_rng.c b/drivers/rng/npcm_rng.c index 70c1c032b6..3922acad5b 100644 --- a/drivers/rng/npcm_rng.c +++ b/drivers/rng/npcm_rng.c @@ -3,7 +3,6 @@ * Copyright (c) 2022 Nuvoton Technology Corp. */ -#include #include #include #include diff --git a/drivers/rng/optee_rng.c b/drivers/rng/optee_rng.c index 410dfc053f..f692681022 100644 --- a/drivers/rng/optee_rng.c +++ b/drivers/rng/optee_rng.c @@ -4,8 +4,6 @@ */ #define LOG_CATEGORY UCLASS_RNG -#include - #include #include #include diff --git a/drivers/rng/rng-uclass.c b/drivers/rng/rng-uclass.c index 53108e1b31..06ddfa14ac 100644 --- a/drivers/rng/rng-uclass.c +++ b/drivers/rng/rng-uclass.c @@ -5,7 +5,6 @@ #define LOG_CATEGORY UCLASS_RNG -#include #include #include diff --git a/drivers/rng/rockchip_rng.c b/drivers/rng/rockchip_rng.c index 705b424cf3..ce5cbee30a 100644 --- a/drivers/rng/rockchip_rng.c +++ b/drivers/rng/rockchip_rng.c @@ -2,14 +2,14 @@ /* * Copyright (c) 2020 Fuzhou Rockchip Electronics Co., Ltd */ + +#include +#include #include #include -#include -#include #include #include #include -#include #define RK_HW_RNG_MAX 32 diff --git a/drivers/rng/sandbox_rng.c b/drivers/rng/sandbox_rng.c index cc5e1f6e25..071a3228e8 100644 --- a/drivers/rng/sandbox_rng.c +++ b/drivers/rng/sandbox_rng.c @@ -3,11 +3,10 @@ * Copyright (c) 2019, Linaro Limited */ -#include #include #include #include - +#include #include static int sandbox_rng_read(struct udevice *dev, void *data, size_t len) diff --git a/drivers/rng/smccc_trng.c b/drivers/rng/smccc_trng.c index 3a4bb33941..5bb7ebe8a4 100644 --- a/drivers/rng/smccc_trng.c +++ b/drivers/rng/smccc_trng.c @@ -5,7 +5,6 @@ #define LOG_CATEGORY UCLASS_RNG -#include #include #include #include diff --git a/drivers/rng/stm32_rng.c b/drivers/rng/stm32_rng.c index c397b4d95c..61d5ed6158 100644 --- a/drivers/rng/stm32_rng.c +++ b/drivers/rng/stm32_rng.c @@ -5,16 +5,14 @@ #define LOG_CATEGORY UCLASS_RNG -#include #include #include #include #include #include +#include #include #include - -#include #include #include diff --git a/include/rng.h b/include/rng.h index 37af554363..87e26f5647 100644 --- a/include/rng.h +++ b/include/rng.h @@ -6,6 +6,8 @@ #if !defined _RNG_H_ #define _RNG_H_ +#include + struct udevice; /** -- 2.39.5