16 Aug, 2017

2 commits


16 Jun, 2017

1 commit


03 May, 2016

1 commit


06 Feb, 2016

1 commit

  • Correct spelling of "U-Boot" shall be used in all written text
    (documentation, comments in source files etc.).

    Signed-off-by: Bin Meng
    Reviewed-by: Heiko Schocher
    Reviewed-by: Simon Glass
    Reviewed-by: Minkyu Kang

    Bin Meng
     

15 Jan, 2016

1 commit


19 Apr, 2015

1 commit

  • Update the naming convention used in the network stack functions and
    variables that Ethernet drivers use to interact with it.

    This cleans up the temporary hacks that were added to this interface
    along with the DM support.

    This patch has a few remaining checkpatch.pl failures that would be out
    of the scope of this patch to fix (drivers that are in gross violation
    of checkpatch.pl).

    Signed-off-by: Joe Hershberger
    Acked-by: Simon Glass

    Joe Hershberger
     

24 May, 2012

1 commit

  • These are all the files which use the API incorrectly but did not get
    built using MAKEALL -a powerpc|arm. I have no compiler for them, but
    the remaining issues should be far less than without this patch.

    Any outstanding issues are left to the maintainers of boards that use
    these drivers.

    Signed-off-by: Joe Hershberger

    Joe Hershberger
     

11 Dec, 2011

1 commit

  • Fix:
    ne2000_base.c: In function 'dp83902a_send':
    ne2000_base.c:282:7: warning: variable 'tmp' set but not used
    [-Wunused-but-set-variable]
    ne2000_base.c: In function 'dp83902a_RxEvent':
    ne2000_base.c:376:5: warning: variable 'rsr' set but not used
    [-Wunused-but-set-variable]
    ne2000_base.c: In function 'dp83902a_TxEvent':
    ne2000_base.c:513:5: warning: variable 'tsr' set but not used
    [-Wunused-but-set-variable]
    ne2000_base.c: In function 'dp83902a_ClearCounters':
    ne2000_base.c:550:17: warning: variable 'cnt3' set but not used
    [-Wunused-but-set-variable]
    ne2000_base.c:550:11: warning: variable 'cnt2' set but not used
    [-Wunused-but-set-variable]
    ne2000_base.c:550:5: warning: variable 'cnt1' set but not used
    [-Wunused-but-set-variable]

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     

09 Dec, 2011

1 commit

  • This fixes the build of the two sh boards shmin and r7780mp and qemu-mips
    which currently fail to build due to dropped pre-CONFIG_NET_MULTI code.

    This v2 patch minimizes the number of lines in the diff for easy review
    and to eliminate any possible accidential changes resulting from moving
    lines of code in the file. This also makes the register function very easy.

    Any cleanups and improvements are intentionally deferred to follow-up patches
    to keep this patch as simple and as easy to review as possible.

    A new driver register function, ne2k_register() calls the existing
    one-time setup part of the old init function and calls eth_register().

    Changes to shmin, r7780mp and qemu-mips:
    - Call the new ne2k_register() from board_eth_init() of the boards.

    - Tested using qemu-mips board,
    - Tested the two renesas / sh boards r7780mp and shmin to compile again,
    and should work.

    checkpatch-clean when "--ignore VOLATILE" is added to .checkpatch.conf,
    and no warnings introduced in none of the three boards using this driver.

    Signed-off-by: Bernhard Kaindl

    Bernhard Kaindl
     

22 Oct, 2011

1 commit


19 Oct, 2008

1 commit


14 Oct, 2008

1 commit

  • get_prom function was used __attriute__ , but it is not enable.
    ax88796.o does not do link besides ne2000.o. When ld is carried
    out, get_prom function of ax88796.c is ignored.
    This problem is a thing by specifications of ld.
    I checked and test this patch on SuperH and MIPS.

    Signed-off-by: Nobuhiro Iwamatsu
    Signed-off-by: Ben Warren

    Nobuhiro Iwamatsu