Dear k...@koi8.net,

In message <pine.lnx.4.64ksi.0902121417310.21...@home-gw.koi8.net> you wrote:
>
...
> -int i2c_read (uchar chip, uint addr, int alen, uchar * buffer, int len)
> +static int omap1510_i2c_read (uchar chip, uint addr, int alen, uchar * 
> buffer, int len)
>  {
>       int i;
>  
>       if (alen > 1) {
> -             printf ("I2C read: addr len %d not supported\n", alen);
> +             printf ("%s: addr len %d not supported\n", __FUNCTION__, alen);
>               return 1;
>       }
>  
>       if (addr + len > 256) {
> -             printf ("I2C read: address out of range\n");
> +             printf ("%s: address out of range\n", __FUNCTION__);

These are changes really to the worse: instead of

        I2C read: address out of range

we now get

        omap1510_i2c_read: address out of range

More difficult to read, higher memory footprint.

Please revert this.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
"Today's robots are very primitive, capable of understanding  only  a
few  simple  instructions  such  as 'go left', 'go right', and 'build
car'."                                                  - John Sladek
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to