[U-Boot-Users] What if eth_init() fails?

Detlev Zundel dzu at denx.de
Fri Nov 16 13:29:04 CET 2007


Hi Upakul,

> Thanks for the replies. I am attaching herewith, the patch which I suppose
> should fix the issue in NetLoop().

Thanks, but nowadays we would appreciate if you could send a patch
with a proper commit message and a Signed-Off-By line.  Just look at
recent patches here on the mailing list to see what I mean.  Oh and
by the way, version 1.2.0 will not get any update fixes so please base
your patch on the top of tree of git, thanks.

> --- u-boot-1.2.0_orig/net/net.c	2007-01-07 04:43:11.000000000 +0530
> +++ u-boot-1.2.0/net/net.c	2007-11-14 18:03:03.000000000 +0530
> @@ -305,7 +305,7 @@
>  #ifdef CONFIG_NET_MULTI
>  	eth_set_current();
>  #endif
> -	if (eth_init(bd) < 0) {
> +	if (eth_init(bd) > 0) {
>  		eth_halt();
>  		return(-1);
>  	}

Secondly and more important, did you test this?  I'd say your test is
the wrong way round, i.e. eth_init returns true in the C sense (!=0)
if it was able to initialize an interface.  (This also chimes with the
naming of the function by the way).  So I'd propose to go for
"!eth_init(..)".

Cheers
  Detlev

-- 
Man sei weder unzufrieden mit sich selbst - denn das waere Kleinmut - noch
selbstzufrieden - denn das waere Dummheit.
                                    --- Baltasar Gracian
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de




More information about the U-Boot mailing list