Skip to content

Commit

Permalink
fealnx: Fix build breakage -- PR_CONT should be KERN_CONT
Browse files Browse the repository at this point in the history
Commit ad361c9 ("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: Roland Dreier <rolandd@cisco.com>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Roland Dreier authored and Linus Torvalds committed Jul 9, 2009
1 parent 1d01e83 commit 2e31673
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/fealnx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2e31673

Please sign in to comment.