diff options
Diffstat (limited to 'drivers/net')
| -rw-r--r-- | drivers/net/e1000.c | 2 | ||||
| -rw-r--r-- | drivers/net/e1000_spi.c | 5 | ||||
| -rw-r--r-- | drivers/net/sh_eth.h | 1 | 
3 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/net/e1000.c b/drivers/net/e1000.c index 6b71bd901..e726f398d 100644 --- a/drivers/net/e1000.c +++ b/drivers/net/e1000.c @@ -1146,7 +1146,7 @@ e1000_read_mac_addr(struct eth_device *nic)  		nic->enetaddr[5] ^= 1;  #ifdef CONFIG_E1000_FALLBACK_MAC -	if ( *(u32*)(nic->enetaddr) == 0 || *(u32*)(nic->enetaddr) == ~0 ) { +	if (!is_valid_ether_addr(nic->enetaddr)) {  		unsigned char fb_mac[NODE_ADDRESS_SIZE] = CONFIG_E1000_FALLBACK_MAC;  		memcpy (nic->enetaddr, fb_mac, NODE_ADDRESS_SIZE); diff --git a/drivers/net/e1000_spi.c b/drivers/net/e1000_spi.c index 549178019..5f774f4d8 100644 --- a/drivers/net/e1000_spi.c +++ b/drivers/net/e1000_spi.c @@ -1,4 +1,5 @@  #include "e1000.h" +#include <linux/compiler.h>  /*-----------------------------------------------------------------------   * SPI transfer @@ -112,7 +113,7 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,  void spi_free_slave(struct spi_slave *spi)  { -	struct e1000_hw *hw = e1000_hw_from_spi(spi); +	__maybe_unused struct e1000_hw *hw = e1000_hw_from_spi(spi);  	E1000_DBG(hw->nic, "EEPROM SPI access released\n");  } @@ -469,7 +470,7 @@ static int do_e1000_spi_program(cmd_tbl_t *cmdtp, struct e1000_hw *hw,  static int do_e1000_spi_checksum(cmd_tbl_t *cmdtp, struct e1000_hw *hw,  		int argc, char * const argv[])  { -	uint16_t i, length, checksum, checksum_reg; +	uint16_t i, length, checksum = 0, checksum_reg;  	uint16_t *buffer;  	boolean_t upd; diff --git a/drivers/net/sh_eth.h b/drivers/net/sh_eth.h index dd6a4224e..0692f8b06 100644 --- a/drivers/net/sh_eth.h +++ b/drivers/net/sh_eth.h @@ -435,4 +435,3 @@ enum RPADIR_BIT {  enum FIFO_SIZE_BIT {  	FIFO_SIZE_T = 0x00000700, FIFO_SIZE_R = 0x00000007,  }; - |