Commit 9bc2fc9b authored by Ben Hutchings's avatar Ben Hutchings
Browse files

sfc: Make RX queue descriptor counts unsigned for consistency

parent 272baeeb
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;