Re: [U-Boot] [PATCH v2] andes_spi: add andes_spi interface

2011-06-08 Thread Mike Frysinger
On Wednesday, June 08, 2011 04:55:20 Macpaul Lin wrote: > Since the patch v3 of andes_spi driver has been sent on 4/25/2011, > and has no further comment for patch v3 > will you take this patch? Thanks. > > http://patchwork.ozlabs.org/patch/92704/ i dont pick up spi bus drivers ... that's left fo

Re: [U-Boot] [PATCH v2] andes_spi: add andes_spi interface

2011-06-08 Thread Macpaul Lin
Hi all, 2011/6/8 Macpaul Lin > Hi Mike and Wolfgang, > > Since the patch v3 of andes_spi driver has been sent on 4/25/2011, > and has no further comment for patch v3 > will you take this patch? Thanks. > > http://patchwork.ozlabs.org/patch/92704/ > I've forget to reply the mail after quoted par

Re: [U-Boot] [PATCH v2] andes_spi: add andes_spi interface

2011-06-08 Thread Macpaul Lin
Hi Mike and Wolfgang, Since the patch v3 of andes_spi driver has been sent on 4/25/2011, and has no further comment for patch v3 will you take this patch? Thanks. http://patchwork.ozlabs.org/patch/92704/ 2011/4/25 Wolfgang Denk > Dear Mike Frysinger,

Re: [U-Boot] [PATCH v2] andes_spi: add andes_spi interface

2011-04-25 Thread Wolfgang Denk
Dear Mike Frysinger, [this goes also to all other custodians[ In message you wrote: > On Mon, Apr 25, 2011 at 02:50, Macpaul Lin wrote: > > +void spi_init() > > please use "(void)" > > > +void andes_spi_spit_en(struct andes_spi_slave *ds) > > mark static ... If you request changes to a patc

Re: [U-Boot] [PATCH v2] andes_spi: add andes_spi interface

2011-04-25 Thread Mike Frysinger
On Mon, Apr 25, 2011 at 02:50, Macpaul Lin wrote: > +void spi_init() please use "(void)" > +void andes_spi_spit_en(struct andes_spi_slave *ds) mark static > +struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, > + unsigned int max_hz, unsigned int mode) >

[U-Boot] [PATCH v2] andes_spi: add andes_spi interface

2011-04-24 Thread Macpaul Lin
andes_spi is an spi interface developed by Andes Tech. Signed-off-by: Macpaul Lin Cc: Wolfgang Denk Cc: Mike Frysinger --- Changes for v2: - Replace redundant length checking by min(len, 4). - Remove redundant debug marco. - Replace reading register in debug() by local variable. - Add b