Commit fb0c5b05 authored by Bruce Allan's avatar Bruce Allan Committed by Jeff Kirsher
Browse files

ice: use true/false for bool types



Subject says it all.

Signed-off-by: default avatarBruce Allan <bruce.w.allan@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 644f40ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -841,8 +841,8 @@ int ice_clean_rx_irq_zc(struct ice_ring *rx_ring, int budget)
	unsigned int total_rx_bytes = 0, total_rx_packets = 0;
	u16 cleaned_count = ICE_DESC_UNUSED(rx_ring);
	unsigned int xdp_xmit = 0;
	bool failure = false;
	struct xdp_buff xdp;
	bool failure = 0;

	xdp.rxq = &rx_ring->xdp_rxq;