Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-04-06 Thread Remy Bohmer
Hello Vivek, 2009/3/10 Vivek Kutal : >        This Patch adds Support for PXA27X UDC. > > Signed-off-by: Vivek Kutal > --- >  Resinding after doing the changes suggested by Kim. Applied to U-boot usb. Thanks. Remy ___ U-Boot mailing list U-Boot@lists.

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-04-05 Thread Remy Bohmer
Hello All, >> Is this going to go through the USB or through the PXA tree? > USB I guess > But the patch will need to rebase due to the last usb dev USB is fine with me. Kind Regards, Remy ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:28 Fri 03 Apr , Wolfgang Denk wrote: > Dear Jean-Christophe & Remy, > > In message <1236684053-21368-1-git-send-email-vivek.ku...@azingo.com> Vivek > Kutal wrote: > > This Patch adds Support for PXA27X UDC. > > > > Signed-off-by: Vivek Kutal > > --- > > Resinding after doing the

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-04-03 Thread Wolfgang Denk
Dear Jean-Christophe & Remy, In message <1236684053-21368-1-git-send-email-vivek.ku...@azingo.com> Vivek Kutal wrote: > This Patch adds Support for PXA27X UDC. > > Signed-off-by: Vivek Kutal > --- > Resinding after doing the changes suggested by Kim. > > drivers/serial/usbtty.h

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-03-09 Thread Kim Phillips
On Mon, 9 Mar 2009 18:38:47 +0530 Vivek Kutal wrote: > +#ifdef USBDDBG > +static void udc_dump_buffer(char *name, u8 *buf, int len) > +{ > + int i, p, flag = 1; > + > + usbdbg("%s - buf %p, len %d", name, buf, len); > + for (i = p = 0; i < len; i++, p++) { > + if (p == 0)

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-03-06 Thread Remy Bohmer
Hello Vivek, 2009/3/6 Vivek Kutal : > Hi Remy, >                There are around ~70 warnings generated for pxa-regs.h > for having more than 80 chars in a line, I have taken all the macro > definitions from the linux kernel source code should I fix those > warnings too ? Also pxa-regs.h already h

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-03-06 Thread Vivek Kutal
Hi Remy, There are around ~70 warnings generated for pxa-regs.h for having more than 80 chars in a line, I have taken all the macro definitions from the linux kernel source code should I fix those warnings too ? Also pxa-regs.h already has many line with more than 80 chars. -- Than

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-03-05 Thread Remy Bohmer
Hello Vivek, 2009/2/23 Vivek Kutal : > Signed-off-by: Vivek Kutal > --- Missing proper description of this patch. >  drivers/serial/usbtty.h             |    4 +- >  drivers/usb/Makefile                |    1 + >  drivers/usb/usbdcore_pxa27x.c       |  712 > +++