diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 22:07:57 +0200 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 22:07:57 +0200 | 
| commit | 18122019972ca639ee3b581257e3a63ff7c8efeb (patch) | |
| tree | 52f7223e7c63f43322f3eee4722743e12190a19f /drivers/net/e1000.h | |
| parent | 90639feaa0d66a204f9d03a325ab14e2f97f6cbb (diff) | |
| parent | 785881f775252940185e10fbb2d5299c9ffa6bce (diff) | |
| download | olio-uboot-2014.01-18122019972ca639ee3b581257e3a63ff7c8efeb.tar.xz olio-uboot-2014.01-18122019972ca639ee3b581257e3a63ff7c8efeb.zip | |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Conflicts:
	drivers/video/exynos_fb.c
Diffstat (limited to 'drivers/net/e1000.h')
| -rw-r--r-- | drivers/net/e1000.h | 55 | 
1 files changed, 25 insertions, 30 deletions
| diff --git a/drivers/net/e1000.h b/drivers/net/e1000.h index 1bbae5085..6b93c2bfe 100644 --- a/drivers/net/e1000.h +++ b/drivers/net/e1000.h @@ -89,11 +89,6 @@ int do_e1000_spi(cmd_tbl_t *cmdtp, struct e1000_hw *hw,  		int argc, char * const argv[]);  #endif -typedef enum { -	FALSE = 0, -	TRUE = 1 -} boolean_t; -  /* Enumerated types specific to the e1000 hardware */  /* Media Access Controlers */  typedef enum { @@ -340,7 +335,7 @@ struct e1000_phy_stats {  						   Control and Address */  #define IFE_PHY_SPECIAL_CONTROL           0x11  /* 100BaseTx PHY special  						   control register */ -#define IFE_PHY_RCV_FALSE_CARRIER         0x13  /* 100BaseTx Receive False +#define IFE_PHY_RCV_FALSE_CARRIER         0x13  /* 100BaseTx Receive false  						   Carrier Counter */  #define IFE_PHY_RCV_DISCONNECT            0x14  /* 100BaseTx Receive Disconnet  						   Counter */ @@ -1040,14 +1035,14 @@ struct e1000_hw_stats {  };  struct e1000_eeprom_info { -    e1000_eeprom_type type; -    uint16_t word_size; -    uint16_t opcode_bits; -    uint16_t address_bits; -    uint16_t delay_usec; -    uint16_t page_size; -    boolean_t use_eerd; -    boolean_t use_eewr; +e1000_eeprom_type type; +	uint16_t word_size; +	uint16_t opcode_bits; +	uint16_t address_bits; +	uint16_t delay_usec; +	uint16_t page_size; +	bool use_eerd; +	bool use_eewr;  };  typedef enum { @@ -1150,20 +1145,20 @@ struct e1000_hw {  #if 0  	uint8_t perm_mac_addr[NODE_ADDRESS_SIZE];  #endif -	boolean_t disable_polarity_correction; -	boolean_t		speed_downgraded; -	boolean_t get_link_status; -	boolean_t tbi_compatibility_en; -	boolean_t tbi_compatibility_on; -	boolean_t		fc_strict_ieee; -	boolean_t fc_send_xon; -	boolean_t report_tx_early; -	boolean_t phy_reset_disable; -	boolean_t		initialize_hw_bits_disable; +	bool disable_polarity_correction; +	bool		speed_downgraded; +	bool get_link_status; +	bool tbi_compatibility_en; +	bool tbi_compatibility_on; +	bool		fc_strict_ieee; +	bool fc_send_xon; +	bool report_tx_early; +	bool phy_reset_disable; +	bool		initialize_hw_bits_disable;  #if 0 -	boolean_t adaptive_ifs; -	boolean_t ifs_params_forced; -	boolean_t in_ifs_mode; +	bool adaptive_ifs; +	bool ifs_params_forced; +	bool in_ifs_mode;  #endif  	e1000_smart_speed	smart_speed;  	e1000_dsp_config	dsp_config_state; @@ -1860,11 +1855,11 @@ struct e1000_hw {   * Typical use:   *  ...   *  if (TBI_ACCEPT) { - *	accept_frame = TRUE; + *	accept_frame = true;   *	e1000_tbi_adjust_stats(adapter, MacAddress);   *	frame_length--;   *  } else { - *	accept_frame = FALSE; + *	accept_frame = false;   *  }   *  ...   */ @@ -2080,7 +2075,7 @@ struct e1000_hw {  #define GG82563_PSSR2_ENERGY_DETECT_CHANGED 0x0010 /* 1=Energy Detect Changed */  #define GG82563_PSSR2_DOWNSHIFT_INTERRUPT   0x0020 /* 1=Downshift Detected */  #define GG82563_PSSR2_MDI_CROSSOVER_CHANGE  0x0040 /* 1=Crossover Changed */ -#define GG82563_PSSR2_FALSE_CARRIER         0x0100 /* 1=False Carrier */ +#define GG82563_PSSR2_FALSE_CARRIER         0x0100 /* 1=false Carrier */  #define GG82563_PSSR2_SYMBOL_ERROR          0x0200 /* 1=Symbol Error */  #define GG82563_PSSR2_LINK_STATUS_CHANGED   0x0400 /* 1=Link Status Changed */  #define GG82563_PSSR2_AUTO_NEG_COMPLETED    0x0800 /* 1=Auto-Neg Completed */ |