mbox

[U-Boot] Pull request: u-boot-usb

Message ID AANLkTi=WCosZc8XPQxibuoWbcV7mWNDQ4oWr=BcQLDQu@mail.gmail.com
State Accepted
Headers show

Pull-request

git://git.denx.de/u-boot-usb.git master

Message

Remy Bohmer Feb. 19, 2011, 8:07 p.m. UTC
The following changes since commit efb063390d2d1e712c2c8110911616244d562c4b:

  add checking the CONFIG_ENV_IS_IN_SPI_FLASH in Enbedded env
(2011-02-15 22:09:50 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-usb.git master

Remy Bohmer (2):
      Fix build warnings in cmd_flash.c
      Fix compile warning in net/eth.c

Simon Glass (3):
      Fix EHCI usb submit timeout and unify with OHCI
      Add USB host ethernet adapter support
      Add support for ASIX AX88772 USB 2.0 10/100Mbit Ethernet Adaptor

Vitaly Kuzmichev (5):
      USB-CDC: handle interrupt after dropped pullup
      USB-CDC: Port struct net_device_stats
      USB-CDC: Move struct declaration before its use
      USB: Add USB RNDIS gadget protocol
      USB-RNDIS: Send RNDIS state on disconnecting

 Makefile                    |    1 +
 common/cmd_flash.c          |    8 +-
 common/cmd_usb.c            |   12 +-
 common/usb.c                |    6 +-
 doc/README.usb              |    4 +-
 drivers/usb/eth/Makefile    |   48 ++
 drivers/usb/eth/asix.c      |  635 +++++++++++++++++++++
 drivers/usb/eth/usb_ether.c |  150 +++++
 drivers/usb/gadget/Makefile |    1 +
 drivers/usb/gadget/ether.c  |  775 ++++++++++++++++++++++---
 drivers/usb/gadget/ndis.h   |  217 +++++++
 drivers/usb/gadget/rndis.c  | 1317 +++++++++++++++++++++++++++++++++++++++++++
 drivers/usb/gadget/rndis.h  |  260 +++++++++
 drivers/usb/host/ehci-hcd.c |   10 +-
 drivers/usb/host/ohci-hcd.c |    7 +-
 include/linux/netdevice.h   |   65 +++
 include/linux/usb/cdc.h     |    6 +-
 include/usb.h               |   15 +-
 include/usb_ether.h         |   68 +++
 net/eth.c                   |   43 +-
 20 files changed, 3519 insertions(+), 129 deletions(-)
 create mode 100644 drivers/usb/eth/Makefile
 create mode 100644 drivers/usb/eth/asix.c
 create mode 100644 drivers/usb/eth/usb_ether.c
 create mode 100644 drivers/usb/gadget/ndis.h
 create mode 100644 drivers/usb/gadget/rndis.c
 create mode 100644 drivers/usb/gadget/rndis.h
 create mode 100644 include/linux/netdevice.h
 create mode 100644 include/usb_ether.h

Comments

Wolfgang Denk Feb. 19, 2011, 8:32 p.m. UTC | #1
Dear Remy Bohmer,

In message <AANLkTi=WCosZc8XPQxibuoWbcV7mWNDQ4oWr=BcQLDQu@mail.gmail.com> you wrote:
> The following changes since commit efb063390d2d1e712c2c8110911616244d562c4b:
> 
>   add checking the CONFIG_ENV_IS_IN_SPI_FLASH in Enbedded env
> (2011-02-15 22:09:50 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-usb.git master
> 
> Remy Bohmer (2):
>       Fix build warnings in cmd_flash.c
>       Fix compile warning in net/eth.c

These are in no way USB related.

You are not supposed to pull such stuff into your repository.

> Simon Glass (3):
>       Fix EHCI usb submit timeout and unify with OHCI
>       Add USB host ethernet adapter support
>       Add support for ASIX AX88772 USB 2.0 10/100Mbit Ethernet Adaptor
> 
> Vitaly Kuzmichev (5):
>       USB-CDC: handle interrupt after dropped pullup
>       USB-CDC: Port struct net_device_stats
>       USB-CDC: Move struct declaration before its use
>       USB: Add USB RNDIS gadget protocol
>       USB-RNDIS: Send RNDIS state on disconnecting
> 
>  Makefile                    |    1 +
>  common/cmd_flash.c          |    8 +-
>  common/cmd_usb.c            |   12 +-
>  common/usb.c                |    6 +-
>  doc/README.usb              |    4 +-
>  drivers/usb/eth/Makefile    |   48 ++
>  drivers/usb/eth/asix.c      |  635 +++++++++++++++++++++
>  drivers/usb/eth/usb_ether.c |  150 +++++
>  drivers/usb/gadget/Makefile |    1 +
>  drivers/usb/gadget/ether.c  |  775 ++++++++++++++++++++++---
>  drivers/usb/gadget/ndis.h   |  217 +++++++
>  drivers/usb/gadget/rndis.c  | 1317 +++++++++++++++++++++++++++++++++++++++++++
>  drivers/usb/gadget/rndis.h  |  260 +++++++++
>  drivers/usb/host/ehci-hcd.c |   10 +-
>  drivers/usb/host/ohci-hcd.c |    7 +-
>  include/linux/netdevice.h   |   65 +++
>  include/linux/usb/cdc.h     |    6 +-
>  include/usb.h               |   15 +-
>  include/usb_ether.h         |   68 +++
>  net/eth.c                   |   43 +-
>  20 files changed, 3519 insertions(+), 129 deletions(-)
>  create mode 100644 drivers/usb/eth/Makefile
>  create mode 100644 drivers/usb/eth/asix.c
>  create mode 100644 drivers/usb/eth/usb_ether.c
>  create mode 100644 drivers/usb/gadget/ndis.h
>  create mode 100644 drivers/usb/gadget/rndis.c
>  create mode 100644 drivers/usb/gadget/rndis.h
>  create mode 100644 include/linux/netdevice.h
>  create mode 100644 include/usb_ether.h

Applied, thanks.

Best regards,

Wolfgang Denk