Commit eef6e7b2 authored by Peter Hurley's avatar Peter Hurley Committed by Greg Kroah-Hartman
Browse files

staging/fwserial: Fix build breakage when !CONFIG_BUG

parent 7355ba34
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -33,10 +33,7 @@

#define FAIL(fifo, condition, format...) ({				\
	fifo->corrupt = !!(condition);					\
	if (unlikely(fifo->corrupt)) {					\
		__WARN_printf(format);					\
	}								\
	unlikely(fifo->corrupt);					\
	WARN(fifo->corrupt, format);					\
})

/*