From: Ben Hutchings Date: Tue, 29 Jan 2013 23:33:14 +0000 (+0000) Subject: sfc: Make RX queue descriptor counts unsigned for consistency X-Git-Tag: omap-for-v3.10/dt-fixes-for-merge-window~65^2~507^2~8 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bc2fc9b5272cc888fb10d5839f7188fa0bfdc90;p=pandora-kernel.git sfc: Make RX queue descriptor counts unsigned for consistency Signed-off-by: Ben Hutchings --- 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 { 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;