aboutsummaryrefslogtreecommitdiff
path: root/lib/rc4.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-12-14 13:16:58 -0500
committerTom Rini <trini@konsulko.com>2023-12-21 08:54:37 -0500
commit467382ca03758e4f3f13107e3a83669e93a7461e (patch)
treec8b6c0f66052e329cc57451c9e0fe2d24bc3407d /lib/rc4.c
parent1e8ce11a0b94bb2fcf55590eeffa9c85886b89bc (diff)
downloadu-boot-467382ca03758e4f3f13107e3a83669e93a7461e.zip
u-boot-467382ca03758e4f3f13107e3a83669e93a7461e.tar.gz
u-boot-467382ca03758e4f3f13107e3a83669e93a7461e.tar.bz2
lib: Remove <common.h> inclusion from these filesWIP/2023-12-21-header-inclusion-cleanup
After some header file cleanups to add missing include files, remove common.h from all files in the lib directory. This primarily means just dropping the line but in a few cases we need to add in other header files now. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'lib/rc4.c')
-rw-r--r--lib/rc4.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/rc4.c b/lib/rc4.c
index 720112d..3839924 100644
--- a/lib/rc4.c
+++ b/lib/rc4.c
@@ -7,9 +7,6 @@
* Rivest Cipher 4 (RC4) implementation
*/
-#ifndef USE_HOSTCC
-#include <common.h>
-#endif
#include <rc4.h>
void rc4_encode(unsigned char *buf, unsigned int len, const unsigned char key[16])