diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-06-05 21:51:33 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2024-06-16 08:41:53 +0300 |
commit | 4604b3888f614a353c7afa17bdc8e7393bb1f9a1 (patch) | |
tree | 1212c811db3dfae1b895edcbde990e1aafec8a8d | |
parent | 293695f17ee4a8585f1d5a4e90a2c2c92995225a (diff) | |
download | linux-4604b3888f614a353c7afa17bdc8e7393bb1f9a1.tar.xz |
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 |