diff options
author | Tom Rini <trini@konsulko.com> | 2023-11-20 16:59:57 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-21 13:23:17 -0500 |
commit | 25f6a4dde7376ba5e0525851820ee203906ff637 (patch) | |
tree | 6009853dbd6203373ca265fcaba0a6fde6c277cd /lib/dhry/cmd_dhry.c | |
parent | cb1cb4bd086927ae7caa8a983836b0546d52c038 (diff) | |
download | u-boot-TEST/sha-header-cleanup.tar.gz |
lib: Remove <common.h> inclusion from these filesTEST/sha-header-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.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'lib/dhry/cmd_dhry.c')
-rw-r--r-- | lib/dhry/cmd_dhry.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/dhry/cmd_dhry.c b/lib/dhry/cmd_dhry.c index 77b52a23003..e52beaeaadc 100644 --- a/lib/dhry/cmd_dhry.c +++ b/lib/dhry/cmd_dhry.c @@ -3,9 +3,10 @@ * (C) Copyright 2015 Google, Inc */ -#include <common.h> #include <command.h> #include <div64.h> +#include <time.h> +#include <vsprintf.h> #include "dhry.h" static int do_dhry(struct cmd_tbl *cmdtp, int flag, int argc, |