Commit 5ae66064 authored by David Mosberger-Tang's avatar David Mosberger-Tang Committed by Kalle Valo
Browse files

wilc1000: Fix missing newline in error message

parent f92b9f96
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -27,7 +27,7 @@ static irqreturn_t isr_uh_routine(int irq, void *user_data)
	struct wilc *wilc = user_data;
	struct wilc *wilc = user_data;


	if (wilc->close) {
	if (wilc->close) {
		pr_err("Can't handle UH interrupt");
		pr_err("Can't handle UH interrupt\n");
		return IRQ_HANDLED;
		return IRQ_HANDLED;
	}
	}
	return IRQ_WAKE_THREAD;
	return IRQ_WAKE_THREAD;