diff options
| author | Wolfgang Denk <wd@denx.de> | 2011-12-12 07:58:58 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-12-12 07:58:58 +0100 | 
| commit | b2eb7d9bc6032e16b7dd898f7c0ea654f63b61db (patch) | |
| tree | b8b649483183d93dedfcb5512d0b9720aa91644f /common/cmd_usb.c | |
| parent | 4f1a2cd1637027f31de7796aedb1fa5fc0ec0f97 (diff) | |
| parent | d98d8bc1c913a5a1aea6b17365f90c430d1fc95a (diff) | |
| download | olio-uboot-2014.01-b2eb7d9bc6032e16b7dd898f7c0ea654f63b61db.tar.xz olio-uboot-2014.01-b2eb7d9bc6032e16b7dd898f7c0ea654f63b61db.zip  | |
Merge branch 'master' of git://git.denx.de/u-boot-usb
* 'master' of git://git.denx.de/u-boot-usb:
  USB: efikamx: Enable USB on EfikaMX and EfikaSB
  USB: Add generic ULPI layer and a viewport
  USB: EHCI: Allow EHCI post-powerup configuration in board files
  USB: mx51evk: add end enable USB host support on port 1
  USB: mx53loco: add end enable USB host support on port 1
  USB: MX5: Add MX5 usb post-init callback
  USB: MX5: Abstract out mx51 USB pixmux configuration
  USB: MX5: add generic USB EHCI support for mx51 and mx53
  USB: MX5: add helper functions to enable USB clocks
  usb:gadget:s5p Enable the USB Gadget framework at GONI
  usb:gadget:s5p USB Device Controller (UDC) implementation
  ehci: speed up initialization
  usb: add help for missing start subcommand
  cosmetic: remove excess whitespace from usb command help
  usb: align usb_endpoint_descriptor to 16-bit boundary
  usbtty: init endpoints prior to startup events
  pxa: convert pxa27x_udc to use read and write functions
  pxa: activate the first usb host port on pxa27x by default
  pxa: fix usb host register mismatch
  ehci-fsl: correct size of ehci caplength
  USB: Add usb_event_poll() to get keyboards working with EHCI
  USB: gadaget: add Marvell controller support
  USB: Fix complaints about strict aliasing in OHCI-HCD
  USB: Drop dead code from usb_kbd.c
  USB: Rework usb_kbd.c
  USB: Add functionality to poll the USB keyboard via control EP
Diffstat (limited to 'common/cmd_usb.c')
| -rw-r--r-- | common/cmd_usb.c | 16 | 
1 files changed, 9 insertions, 7 deletions
diff --git a/common/cmd_usb.c b/common/cmd_usb.c index 8c8726566..d4ec2a291 100644 --- a/common/cmd_usb.c +++ b/common/cmd_usb.c @@ -700,11 +700,12 @@ int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  U_BOOT_CMD(  	usb,	5,	1,	do_usb,  	"USB sub-system", -	"reset - reset (rescan) USB controller\n" -	"usb stop [f]  - stop USB [f]=force stop\n" -	"usb tree  - show USB device tree\n" +	"start - start (scan) USB controller\n" +	"usb reset - reset (rescan) USB controller\n" +	"usb stop [f] - stop USB [f]=force stop\n" +	"usb tree - show USB device tree\n"  	"usb info [dev] - show available USB devices\n" -	"usb storage  - show details of USB storage devices\n" +	"usb storage - show details of USB storage devices\n"  	"usb dev [dev] - show or set current USB storage device\n"  	"usb part [dev] - print partition table of one or all USB storage"  	" devices\n" @@ -725,8 +726,9 @@ U_BOOT_CMD(  U_BOOT_CMD(  	usb,	5,	1,	do_usb,  	"USB sub-system", -	"reset - reset (rescan) USB controller\n" -	"usb  tree  - show USB device tree\n" -	"usb  info [dev] - show available USB devices" +	"start - start (scan) USB controller\n" +	"usb reset - reset (rescan) USB controller\n" +	"usb tree - show USB device tree\n" +	"usb info [dev] - show available USB devices"  );  #endif  |