23 Nov, 2013

1 commit

  • This fixes the following compiler warnings when activating
    CONFIG_MCAST_TFTP:

    tsec.c: In function 'tsec_mcast_addr':
    tsec.c:130:2: warning: passing argument 2 of 'ether_crc' makes pointer
    from integer without a cast [enabled by default]
    In file included from /work/u-boot-net/include/common.h:874:0,
    from tsec.c:15:
    /work/u-boot-net/include/net.h:189:5: note: expected 'const unsigned
    char *' but argument is of type 'u8'
    tsec.c: In function 'tsec_initialize':
    tsec.c:646:13: warning: assignment from incompatible pointer type
    [enabled by default]
    eth.c: In function 'eth_mcast_join':
    eth.c:358:2: warning: passing argument 2 of 'eth_current->mcast' makes
    integer from pointer without a cast [enabled by default]
    eth.c:358:2: note: expected 'u32' but argument is of type 'u8 *'

    In the eth_mcast_join() implementation, eth_current->mcast()
    takes a u8 pointer to the multicast mac address and not a ip
    address value as implied by its prototype.

    Fix parameter type mismatch for tsec_macst_addr() (tsec.c):
    ether_crc() takes a u8 pointer not a u8 value.
    mcast() is given a u8 pointer to the multicats mac address.
    Update parameter type for the rest of mcast() instances.

    Signed-off-by: Claudiu Manoil
    Patch: 278989

    Claudiu Manoil
     

23 May, 2012

1 commit


08 Nov, 2011

1 commit

  • Fix:
    rtl8139.c: In function 'rtl8139_probe':
    rtl8139.c:256:15: warning: variable 'fullduplex' set but not used
    [-Wunused-but-set-variable]
    rtl8139.c:256:6: warning: variable 'speed10' set but not used
    [-Wunused-but-set-variable]
    rtl8139.c: In function 'rtl_transmit':
    rtl8139.c:419:16: warning: variable 'txstatus' set but not used
    [-Wunused-but-set-variable]

    Change code to use new debug macros; also fix the new errors and
    warnigns popping up now, like "error: 'to' undeclared" and some
    "warning: format '%X' expects argument of type 'unsigned int', but
    argument X has type 'long unsigned int'"

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     

15 Nov, 2010

1 commit


21 Oct, 2008

1 commit


03 Sep, 2008

1 commit


10 Jun, 2008

1 commit


17 Jan, 2008

3 commits


10 Jan, 2008

1 commit

  • Change return values of init() functions in all Ethernet drivers to conform
    to the following:

    >=0: Success

    Acked-by: Stefan Roese
    Acked-by: Jean-Christophe PLAGNIOL-VILLARD
    Acked-by: Kim Phillips
    Acked-by: Haavard Skinnemoen
    Acked-By: Timur Tabi

    Ben Warren
     

26 Nov, 2007

1 commit