06 May, 2015

2 commits


19 Apr, 2015

6 commits


24 May, 2012

3 commits


16 May, 2012

1 commit


13 May, 2011

1 commit


08 Aug, 2009

1 commit

  • Minor ./net cleanups - no functional changes
    - change #ifdef DEBUG printf(); #endif to just debug()
    - changed __FUNCTION__ to __func__
    - got rid of extra whitespace between function and opening brace
    - removed unnecessary braces on if statements

    gcc dead code elimination should make this functionally/size equivalent
    when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).

    Signed-off-by: Robin Getz

    Signed-off-by: Ben Warren

    Robin Getz
     

10 Feb, 2009

1 commit


19 Oct, 2008

1 commit

  • Enforce millisecond semantics of the first argument to NetSetTimeout() --
    the change is transparent for well-behaving boards (CFG_HZ == 1000 and
    get_timer() countiing in milliseconds).

    Rationale for this patch is to enable millisecond granularity for
    network-related timeouts, which is needed for the upcoming automatic
    software update feature.

    Summary of changes:
    - do not scale the first argument to NetSetTimeout() by CFG_HZ
    - change timeout values used in the networking code to milliseconds

    Signed-off-by: Rafal Czubak
    Signed-off-by: Bartlomiej Sieka
    Signed-off-by: Ben Warren

    Bartlomiej Sieka
     

12 Jul, 2007

1 commit


10 Jul, 2007

1 commit


04 Jul, 2007

1 commit

  • This is a compatibility step that allows both the older form
    and the new form to co-exist for a while until the older can
    be removed entirely.

    All transformations are of the form:
    Before:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
    After:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)

    Signed-off-by: Jon Loeliger

    Jon Loeliger
     

03 Apr, 2005

1 commit


01 Apr, 2005

1 commit