diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:43 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:25:02 -0500 |
commit | 288b29e44d30afd946724ac577125ea9f80c8aca (patch) | |
tree | 357715f6c9b5bf4202930c0604bc530a928611d9 /drivers/usb | |
parent | 36bf446b642d5759981f5adf547b4a7aeb15eee3 (diff) | |
download | u-boot-288b29e44d30afd946724ac577125ea9f80c8aca.tar.gz u-boot-288b29e44d30afd946724ac577125ea9f80c8aca.tar.xz u-boot-288b29e44d30afd946724ac577125ea9f80c8aca.zip |
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/usb')
-rw-r--r-- | drivers/usb/gadget/f_thor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/gadget/f_thor.c b/drivers/usb/gadget/f_thor.c index 920fa5279c..5a023a2b34 100644 --- a/drivers/usb/gadget/f_thor.c +++ b/drivers/usb/gadget/f_thor.c @@ -14,6 +14,7 @@ * Sanghee Kim <sh0130.kim@samsung.com> */ +#include <command.h> #include <errno.h> #include <common.h> #include <console.h> |