diff options
author | Tom Rini <trini@konsulko.com> | 2023-12-21 11:51:58 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-21 11:51:58 -0500 |
commit | ae797e022e6de408497a5ffaa329751893762b9b (patch) | |
tree | c8b6c0f66052e329cc57451c9e0fe2d24bc3407d /lib/sha256.c | |
parent | 36d3db6c2c060ee85176156dc9a607e8cd5465f4 (diff) | |
parent | 467382ca03758e4f3f13107e3a83669e93a7461e (diff) |
Merge branch '2023-12-21-header-inclusion-cleanup' into next
- Merge in changes to clean up various places that used <common.h> or
<linux/kconfig.h>
Diffstat (limited to 'lib/sha256.c')
-rw-r--r-- | lib/sha256.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/sha256.c b/lib/sha256.c index 4d26aea1c8..665ba6f152 100644 --- a/lib/sha256.c +++ b/lib/sha256.c @@ -6,12 +6,9 @@ */ #ifndef USE_HOSTCC -#include <common.h> -#include <linux/string.h> -#else -#include <string.h> +#include <cyclic.h> #endif /* USE_HOSTCC */ -#include <watchdog.h> +#include <string.h> #include <u-boot/sha256.h> #include <linux/compiler_attributes.h> |