aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgb/ixgb.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2008-03-21 14:06:37 -0400
committerJeff Garzik <jeff@garzik.org>2008-03-26 00:17:45 -0400
commit446490ca44dcc8a1a9f3c082809bdab208626891 (patch)
treec03c43be82866695c6793d9d46c838ed5d1e4457 /drivers/net/ixgb/ixgb.h
parentbab2bce7dcea9aaf9374b6c24001d6afcced4ca5 (diff)
ixgb: convert boolean_t to bool
> send me a patch for e1000 and for ixgb and I'll happily apply those :) boolean_t to bool TRUE to true FALSE to false Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
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