Re: [U-Boot] [PATCH 2/5] sunxi: add USB EHCI driver

2014-07-09 Thread Ian Campbell
On Tue, 2014-07-08 at 22:21 +0200, Roman Byshko wrote: > diff --git a/drivers/usb/host/ehci-sunxi.c b/drivers/usb/host/ehci-sunxi.c > new file mode 100644 > index 000..5817fc7 > --- /dev/null > +++ b/drivers/usb/host/ehci-sunxi.c > @@ -0,0 +1,236 @@ > +/* > + * Copyright (C) 2014 arokux > + * >

[U-Boot] [PATCH 2/5] sunxi: add USB EHCI driver

2014-07-08 Thread Roman Byshko
Signed-off-by: Roman Byshko --- drivers/usb/host/Makefile | 1 + drivers/usb/host/ehci-sunxi.c | 236 ++ 2 files changed, 237 insertions(+) create mode 100644 drivers/usb/host/ehci-sunxi.c diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Ma