diff options
author | Steve Rae <srae@broadcom.com> | 2014-08-26 18:47:29 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-09-24 22:30:27 (GMT) |
commit | 593cbd93f33c38ca3ee9db34b5657a15d2437902 (patch) | |
tree | 5ee5e95a505c1d7a24f37cb6af1f3d6d24861958 /common/cmd_fastboot.c | |
parent | d1b5ed075311f143926dd916edb59436267eb396 (diff) | |
download | u-boot-fsl-qoriq-593cbd93f33c38ca3ee9db34b5657a15d2437902.tar.xz |
usb/gadget: fastboot: minor cleanup
- update static function
- additional debugging statements
- update "fastboot command" information
- add missing include file
- update spelling
Signed-off-by: Steve Rae <srae@broadcom.com>
Diffstat (limited to 'common/cmd_fastboot.c')
-rw-r--r-- | common/cmd_fastboot.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/cmd_fastboot.c b/common/cmd_fastboot.c index 83fa7bd..909616d 100644 --- a/common/cmd_fastboot.c +++ b/common/cmd_fastboot.c @@ -30,7 +30,8 @@ static int do_fastboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) } U_BOOT_CMD( - fastboot, 1, 1, do_fastboot, - "fastboot - enter USB Fastboot protocol", - "" + fastboot, 1, 0, do_fastboot, + "use USB Fastboot protocol", + "\n" + " - run as a fastboot usb device" ); |