diff options
author | 2024-06-05 21:51:33 +0300 | |
---|---|---|
committer | 2024-06-16 13:41:53 +0800 | |
commit | 4604b3888f614a353c7afa17bdc8e7393bb1f9a1 (patch) | |
tree | 1212c811db3dfae1b895edcbde990e1aafec8a8d | |
parent | dt-bindings: rng: meson: add optional power-domains (diff) | |
download | wireguard-linux-4604b3888f614a353c7afa17bdc8e7393bb1f9a1.tar.xz wireguard-linux-4604b3888f614a353c7afa17bdc8e7393bb1f9a1.zip |
hwrng: core - Remove list.h from the hw_random.h
The 'struct list' type is defined in types.h, no need to include list.h
for that.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | include/linux/hw_random.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/hw_random.h b/include/linux/hw_random.h index 136e9842120e..b424555753b1 100644 --- a/include/linux/hw_random.h +++ b/include/linux/hw_random.h @@ -13,9 +13,8 @@ #define LINUX_HWRANDOM_H_ #include <linux/completion.h> -#include <linux/types.h> -#include <linux/list.h> #include <linux/kref.h> +#include <linux/types.h> /** * struct hwrng - Hardware Random Number Generator driver |