Re: [U-Boot] [PATCH 1/1] Bug fix - release env memory.

2009-01-26 Thread Kumar Gala

On Jan 26, 2009, at 11:50 AM, de...@siconix.com wrote:

Looks ok, but

 This is my first time to create a patch.  Not sure if I have done it  
 right.

we normally put a description of the fix, issue, etc in this section.   
(as its the commit message).



 Signed-off-by: Derek Ou de...@siconix.com
 ---
 common/env_nand.c |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

- k
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/1] Bug fix - release env memory.

2009-01-26 Thread Wolfgang Denk
Dear Derek,

In message 0bee6c3501ae7b8e2c111bf32219e501.squir...@webmail.siconix.com you 
wrote:
 This is my first time to create a patch.  Not sure if I have done it right.

Close, but no cigar ;-)

A comment like the line above must go below the --- line.

 Signed-off-by: Derek Ou de...@siconix.com
 ---
 add comments that are not supposed to become art of
the commit message only *after* this line.

  common/env_nand.c |4 
  1 files changed, 4 insertions(+), 0 deletions(-)
 
 diff --git a/common/env_nand.c b/common/env_nand.c
 index 8af9e74..01430cb 100644
 --- a/common/env_nand.c
 +++ b/common/env_nand.c
 @@ -305,7 +305,11 @@ void env_relocate_spec (void)
   crc2_ok = (crc32(0, tmp_env2-data, ENV_SIZE) == tmp_env2-crc);
 
   if(!crc1_ok  !crc2_ok)
 + {

Please put the { on the same line with the if (see CodingStyle).

 + free(tmp_env1);
 + free(tmp_env2);
   return use_default();
 + }
   else if(crc1_ok  !crc2_ok)

And the } will go on the same line with the else, too.

   gd-env_valid = 1;
   else if(!crc1_ok  crc2_ok)

Please fix and resubmit.

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
Nothing is easier than to denounce  the  evildoer;  nothing  is  more
difficult than to understand him. - Fyodor Dostoevski
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot