Re: [U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-10-06 Thread Wolfgang Denk
Dear Eric Jarrige, In message <20110822213742.28083.69514.st...@shuttle2.etheralp.ch> you wrote: > Signed-off-by: Eric Jarrige > Signed-off-by: Stefano Babic > CC: Ben Warren > --- > README|1 + > common/Makefile |1 + > common/cmd_dm9000ee.c | 84 > +++

Re: [U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-08-23 Thread Eric Jarrige
On 23 août 2011, at 16:21, Stefano Babic wrote: > On 08/23/2011 03:42 PM, Mike Frysinger wrote: >> On Tuesday, August 23, 2011 01:15:25 Eric Jarrige wrote: >>> On 22 août 2011, at 23:55, Mike Frysinger wrote: On Monday, August 22, 2011 17:37:42 Eric Jarrige wrote: > +#if (!defined(CONFIG

Re: [U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-08-23 Thread Stefano Babic
On 08/23/2011 03:42 PM, Mike Frysinger wrote: > On Tuesday, August 23, 2011 01:15:25 Eric Jarrige wrote: >> On 22 août 2011, at 23:55, Mike Frysinger wrote: >>> On Monday, August 22, 2011 17:37:42 Eric Jarrige wrote: +#if (!defined(CONFIG_DM9000_NO_SROM) && defined(CONFIG_DRIVER_DM9000)) >>> >

Re: [U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-08-23 Thread Mike Frysinger
On Tuesday, August 23, 2011 01:15:25 Eric Jarrige wrote: > On 22 août 2011, at 23:55, Mike Frysinger wrote: > > On Monday, August 22, 2011 17:37:42 Eric Jarrige wrote: > >> +#if (!defined(CONFIG_DM9000_NO_SROM) && defined(CONFIG_DRIVER_DM9000)) > > > > why is this necessary ? > > the methods dm90

Re: [U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-08-23 Thread Stefano Babic
On 08/22/2011 11:37 PM, Eric Jarrige wrote: > Signed-off-by: Eric Jarrige > Signed-off-by: Stefano Babic > CC: Ben Warren I think we should drop Ben's name as maintainer for the network because he retired some times ago, but his name is still in the maintainer list. Wolfgang is the maintainer

Re: [U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-08-22 Thread Eric Jarrige
Hi Mike, On 22 août 2011, at 23:55, Mike Frysinger wrote: > On Monday, August 22, 2011 17:37:42 Eric Jarrige wrote: >> +#if (!defined(CONFIG_DM9000_NO_SROM) && defined(CONFIG_DRIVER_DM9000)) > > why is this necessary ? > -mike the methods dm9000_read_srom_word()/dm9000_write_srom_word() need th

Re: [U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-08-22 Thread Mike Frysinger
On Monday, August 22, 2011 17:37:42 Eric Jarrige wrote: > +#if (!defined(CONFIG_DM9000_NO_SROM) && defined(CONFIG_DRIVER_DM9000)) why is this necessary ? -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list

[U-Boot] [PATCH] add dm9000 eeprom read/write command

2011-08-22 Thread Eric Jarrige
Signed-off-by: Eric Jarrige Signed-off-by: Stefano Babic CC: Ben Warren --- README|1 + common/Makefile |1 + common/cmd_dm9000ee.c | 84 + 3 files changed, 86 insertions(+), 0 deletions(-) create mode 100644 commo