Re: [U-Boot] [PATCH] net: add altera triple speeds ethernet mac driver

2010-03-24 Thread Mike Frysinger
On Wednesday 24 March 2010 02:32:46 Thomas Chou wrote: > +int altera_tse_init(bd_t *bis, int num_tses) so "num_tses" is the # of devices to allocate ... > + return 1; ... but you always return 1. this should probably be num_tses. > + for (num = 0; num < num_tses; num++) { > +

[U-Boot] [PATCH] net: add altera triple speeds ethernet mac driver

2010-03-23 Thread Thomas Chou
This driver supports the Altera triple speeds 10/100/1000 ethernet mac. Signed-off-by: Thomas Chou --- drivers/net/Makefile |1 + drivers/net/altera_tse.c | 977 ++ include/altera_tse.h | 512 include/netdev.h