diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2013-01-29 18:33:14 -0500 |
---|---|---|
committer | Ben Hutchings <bhutchings@solarflare.com> | 2013-03-07 15:22:07 -0500 |
commit | 9bc2fc9b5272cc888fb10d5839f7188fa0bfdc90 (patch) | |
tree | 0bff21fea91ac406166c7669587e5659d59e49df /drivers/net/ethernet/sfc | |
parent | 272baeeb6a98f5f746c2eeab4973c2df89e9d7ea (diff) |
sfc: Make RX queue descriptor counts unsigned for consistency
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'drivers/net/ethernet/sfc')
-rw-r--r-- | drivers/net/ethernet/sfc/net_driver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/sfc/net_driver.h b/drivers/net/ethernet/sfc/net_driver.h index fc6770e07d5a..3fd6dbe5e3dd 100644 --- a/drivers/net/ethernet/sfc/net_driver.h +++ b/drivers/net/ethernet/sfc/net_driver.h | |||
@@ -272,9 +272,9 @@ struct efx_rx_queue { | |||
272 | bool enabled; | 272 | bool enabled; |
273 | bool flush_pending; | 273 | bool flush_pending; |
274 | 274 | ||
275 | int added_count; | 275 | unsigned int added_count; |
276 | int notified_count; | 276 | unsigned int notified_count; |
277 | int removed_count; | 277 | unsigned int removed_count; |
278 | unsigned int max_fill; | 278 | unsigned int max_fill; |
279 | unsigned int fast_fill_trigger; | 279 | unsigned int fast_fill_trigger; |
280 | unsigned int min_fill; | 280 | unsigned int min_fill; |