lkml.org 
[lkml]   [2001]   [Mar]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] pcnet32 compilation fix for 2.4.3pre6
    Date
    Hi,
    It looks like a not fully merged patch from Alan's tree:

    drivers/net/net.o: In function `pcnet32_open':
    drivers/net/net.o(.text+0x3bb9): undefined reference to `is_valid_ether_addr'
    drivers/net/net.o: In function `pcnet32_probe1':
    drivers/net/net.o(.text.init+0x5fa): undefined reference to `is_valid_ether_addr'


    diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla/include/linux/etherdevice.h linux.ac/include/linux/etherdevice.h
    --- linux.vanilla/include/linux/etherdevice.h Fri Oct 27 20:22:34 2000
    +++ linux.ac/include/linux/etherdevice.h Fri Feb 16 11:10:22 2001
    @@ -45,6 +45,14 @@
    memcpy (dest->data, src, len);
    }

    +/* Check that the ethernet address (MAC) is not 00:00:00:00:00:00 and is not
    + * a multicast address. Return true if the address is valid.
    + */
    +static __inline__ int is_valid_ether_addr( u8 *addr )
    +{
    + return !(addr[0]&1) && memcmp( addr, "\0\0\0\0\0\0", 6);
    +}
    +
    #endif

    #endif /* _LINUX_ETHERDEVICE_H */
    --
    =======================================================================
    Andrzej M. Krzysztofowicz ankry@mif.pg.gda.pl
    phone (48)(58) 347 14 61
    Faculty of Applied Phys. & Math., Technical University of Gdansk
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/
    \
     
     \ /
      Last update: 2005-03-22 13:22    [W:3.488 / U:25.508 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site