aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgb/ixgb.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgb/ixgb.h')
-rw-r--r--drivers/net/ixgb/ixgb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ixgb/ixgb.h b/drivers/net/ixgb/ixgb.h
index 0078136643f3..fad4e9924a8f 100644
--- a/drivers/net/ixgb/ixgb.h
+++ b/drivers/net/ixgb/ixgb.h
@@ -173,15 +173,15 @@ struct ixgb_adapter {
173 uint64_t hw_csum_tx_error; 173 uint64_t hw_csum_tx_error;
174 uint32_t tx_int_delay; 174 uint32_t tx_int_delay;
175 uint32_t tx_timeout_count; 175 uint32_t tx_timeout_count;
176 boolean_t tx_int_delay_enable; 176 bool tx_int_delay_enable;
177 boolean_t detect_tx_hung; 177 bool detect_tx_hung;
178 178
179 /* RX */ 179 /* RX */
180 struct ixgb_desc_ring rx_ring; 180 struct ixgb_desc_ring rx_ring;
181 uint64_t hw_csum_rx_error; 181 uint64_t hw_csum_rx_error;
182 uint64_t hw_csum_rx_good; 182 uint64_t hw_csum_rx_good;
183 uint32_t rx_int_delay; 183 uint32_t rx_int_delay;
184 boolean_t rx_csum; 184 bool rx_csum;
185 185
186 /* OS defined structs */ 186 /* OS defined structs */
187 struct napi_struct napi; 187 struct napi_struct napi;
@@ -194,7 +194,7 @@ struct ixgb_adapter {
194 u16 msg_enable; 194 u16 msg_enable;
195 struct ixgb_hw_stats stats; 195 struct ixgb_hw_stats stats;
196 uint32_t alloc_rx_buff_failed; 196 uint32_t alloc_rx_buff_failed;
197 boolean_t have_msi; 197 bool have_msi;
198 unsigned long flags; 198 unsigned long flags;
199}; 199};
200 200