Skip to content

Commit

Permalink
sfc: Make RX queue descriptor counts unsigned for consistency
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
  • Loading branch information
Ben Hutchings committed Mar 7, 2013
1 parent 272baee commit 9bc2fc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/ethernet/sfc/net_driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ struct efx_rx_queue {
bool enabled;
bool flush_pending;

int added_count;
int notified_count;
int removed_count;
unsigned int added_count;
unsigned int notified_count;
unsigned int removed_count;
unsigned int max_fill;
unsigned int fast_fill_trigger;
unsigned int min_fill;
Expand Down

0 comments on commit 9bc2fc9

Please sign in to comment.