diff options
Diffstat (limited to 'drivers/net/ixgb/ixgb_hw.h')
-rw-r--r-- | drivers/net/ixgb/ixgb_hw.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/ixgb/ixgb_hw.h b/drivers/net/ixgb/ixgb_hw.h index 4f176ff2b786..d4e95665ce9e 100644 --- a/drivers/net/ixgb/ixgb_hw.h +++ b/drivers/net/ixgb/ixgb_hw.h | |||
@@ -650,7 +650,7 @@ struct ixgb_flash_buffer { | |||
650 | * This is a little-endian specific check. | 650 | * This is a little-endian specific check. |
651 | */ | 651 | */ |
652 | #define IS_MULTICAST(Address) \ | 652 | #define IS_MULTICAST(Address) \ |
653 | (boolean_t)(((uint8_t *)(Address))[0] & ((uint8_t)0x01)) | 653 | (bool)(((uint8_t *)(Address))[0] & ((uint8_t)0x01)) |
654 | 654 | ||
655 | /* | 655 | /* |
656 | * Check whether an address is broadcast. | 656 | * Check whether an address is broadcast. |
@@ -663,7 +663,7 @@ struct ixgb_fc { | |||
663 | uint32_t high_water; /* Flow Control High-water */ | 663 | uint32_t high_water; /* Flow Control High-water */ |
664 | uint32_t low_water; /* Flow Control Low-water */ | 664 | uint32_t low_water; /* Flow Control Low-water */ |
665 | uint16_t pause_time; /* Flow Control Pause timer */ | 665 | uint16_t pause_time; /* Flow Control Pause timer */ |
666 | boolean_t send_xon; /* Flow control send XON */ | 666 | bool send_xon; /* Flow control send XON */ |
667 | ixgb_fc_type type; /* Type of flow control */ | 667 | ixgb_fc_type type; /* Type of flow control */ |
668 | }; | 668 | }; |
669 | 669 | ||
@@ -700,8 +700,8 @@ struct ixgb_hw { | |||
700 | uint32_t num_tx_desc; /* Number of Transmit descriptors */ | 700 | uint32_t num_tx_desc; /* Number of Transmit descriptors */ |
701 | uint32_t num_rx_desc; /* Number of Receive descriptors */ | 701 | uint32_t num_rx_desc; /* Number of Receive descriptors */ |
702 | uint32_t rx_buffer_size; /* Size of Receive buffer */ | 702 | uint32_t rx_buffer_size; /* Size of Receive buffer */ |
703 | boolean_t link_up; /* TRUE if link is valid */ | 703 | bool link_up; /* true if link is valid */ |
704 | boolean_t adapter_stopped; /* State of adapter */ | 704 | bool adapter_stopped; /* State of adapter */ |
705 | uint16_t device_id; /* device id from PCI configuration space */ | 705 | uint16_t device_id; /* device id from PCI configuration space */ |
706 | uint16_t vendor_id; /* vendor id from PCI configuration space */ | 706 | uint16_t vendor_id; /* vendor id from PCI configuration space */ |
707 | uint8_t revision_id; /* revision id from PCI configuration space */ | 707 | uint8_t revision_id; /* revision id from PCI configuration space */ |
@@ -783,11 +783,11 @@ struct ixgb_hw_stats { | |||
783 | }; | 783 | }; |
784 | 784 | ||
785 | /* Function Prototypes */ | 785 | /* Function Prototypes */ |
786 | extern boolean_t ixgb_adapter_stop(struct ixgb_hw *hw); | 786 | extern bool ixgb_adapter_stop(struct ixgb_hw *hw); |
787 | extern boolean_t ixgb_init_hw(struct ixgb_hw *hw); | 787 | extern bool ixgb_init_hw(struct ixgb_hw *hw); |
788 | extern boolean_t ixgb_adapter_start(struct ixgb_hw *hw); | 788 | extern bool ixgb_adapter_start(struct ixgb_hw *hw); |
789 | extern void ixgb_check_for_link(struct ixgb_hw *hw); | 789 | extern void ixgb_check_for_link(struct ixgb_hw *hw); |
790 | extern boolean_t ixgb_check_for_bad_link(struct ixgb_hw *hw); | 790 | extern bool ixgb_check_for_bad_link(struct ixgb_hw *hw); |
791 | 791 | ||
792 | extern void ixgb_rar_set(struct ixgb_hw *hw, | 792 | extern void ixgb_rar_set(struct ixgb_hw *hw, |
793 | uint8_t *addr, | 793 | uint8_t *addr, |
@@ -809,7 +809,7 @@ extern void ixgb_write_vfta(struct ixgb_hw *hw, | |||
809 | void ixgb_get_ee_mac_addr(struct ixgb_hw *hw, uint8_t *mac_addr); | 809 | void ixgb_get_ee_mac_addr(struct ixgb_hw *hw, uint8_t *mac_addr); |
810 | uint32_t ixgb_get_ee_pba_number(struct ixgb_hw *hw); | 810 | uint32_t ixgb_get_ee_pba_number(struct ixgb_hw *hw); |
811 | uint16_t ixgb_get_ee_device_id(struct ixgb_hw *hw); | 811 | uint16_t ixgb_get_ee_device_id(struct ixgb_hw *hw); |
812 | boolean_t ixgb_get_eeprom_data(struct ixgb_hw *hw); | 812 | bool ixgb_get_eeprom_data(struct ixgb_hw *hw); |
813 | __le16 ixgb_get_eeprom_word(struct ixgb_hw *hw, uint16_t index); | 813 | __le16 ixgb_get_eeprom_word(struct ixgb_hw *hw, uint16_t index); |
814 | 814 | ||
815 | /* Everything else */ | 815 | /* Everything else */ |