Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e316730 authored by Roland Dreier's avatar Roland Dreier Committed by Linus Torvalds
Browse files

fealnx: Fix build breakage -- PR_CONT should be KERN_CONT



Commit ad361c98 ("Remove multiple KERN_ prefixes from printk formats")
broke the build for fealnx because it added some "printk(PR_CONT ..."
calls, when PR_CONT doesn't exist; it should be "printk(KERN_CONT ..."

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1d01e835
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1216,13 +1216,13 @@ static void fealnx_tx_timeout(struct net_device *dev)
	{
		printk(KERN_DEBUG "  Rx ring %p: ", np->rx_ring);
		for (i = 0; i < RX_RING_SIZE; i++)
			printk(PR_CONT " %8.8x",
			printk(KERN_CONT " %8.8x",
			       (unsigned int) np->rx_ring[i].status);
		printk(KERN_CONT "\n");
		printk(KERN_DEBUG "  Tx ring %p: ", np->tx_ring);
		for (i = 0; i < TX_RING_SIZE; i++)
			printk(PR_CONT " %4.4x", np->tx_ring[i].status);
		printk(PR_CONT "\n");
			printk(KERN_CONT " %4.4x", np->tx_ring[i].status);
		printk(KERN_CONT "\n");
	}

	spin_lock_irqsave(&np->lock, flags);