aboutsummaryrefslogtreecommitdiff
path: root/drivers/fastboot
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-11-14 12:57:43 -0700
committerTom Rini <trini@konsulko.com>2019-12-02 18:25:02 -0500
commit288b29e44d30afd946724ac577125ea9f80c8aca (patch)
tree357715f6c9b5bf4202930c0604bc530a928611d9 /drivers/fastboot
parent36bf446b642d5759981f5adf547b4a7aeb15eee3 (diff)
downloadu-boot-288b29e44d30afd946724ac577125ea9f80c8aca.zip
u-boot-288b29e44d30afd946724ac577125ea9f80c8aca.tar.gz
u-boot-288b29e44d30afd946724ac577125ea9f80c8aca.tar.bz2
common: Move command functions out of common.h
Move these functions into the command.h header file which is a better fit. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/fastboot')
-rw-r--r--drivers/fastboot/fb_command.c1
-rw-r--r--drivers/fastboot/fb_common.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/fastboot/fb_command.c b/drivers/fastboot/fb_command.c
index 4864344..3c4acfe 100644
--- a/drivers/fastboot/fb_command.c
+++ b/drivers/fastboot/fb_command.c
@@ -4,6 +4,7 @@
*/
#include <common.h>
+#include <command.h>
#include <env.h>
#include <fastboot.h>
#include <fastboot-internal.h>
diff --git a/drivers/fastboot/fb_common.c b/drivers/fastboot/fb_common.c
index e76af8e..c3735a4 100644
--- a/drivers/fastboot/fb_common.c
+++ b/drivers/fastboot/fb_common.c
@@ -11,6 +11,7 @@
*/
#include <common.h>
+#include <command.h>
#include <env.h>
#include <fastboot.h>
#include <net/fastboot.h>