r8169: clean up my printk uglyness
authorNeil Horman <nhorman@tuxdriver.com>
Thu, 1 Apr 2010 07:30:07 +0000 (07:30 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 26 Apr 2010 14:41:38 +0000 (07:41 -0700)
commit 93f4d91d879acfcb0ba9c2725e3133fcff2dfd1e upstream.

Fix formatting on r8169 printk

Brandon Philips noted that I had a spacing issue in my printk for the
last r8169 patch that made it quite ugly.  Fix that up and add the PFX
macro to it as well so it looks like the other r8169 printks

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/net/r8169.c

index 4f858e1392ce4804195570fb74744fdf03ed826a..ab753234e35a4f2036a89c4dbcfeff35d32687b1 100644 (file)
@@ -3255,8 +3255,8 @@ static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
        unsigned int max_frame = mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
 
        if (max_frame != 16383)
-               printk(KERN_WARNING "WARNING! Changing of MTU on this NIC"
-                       "May lead to frame reception errors!\n");
+               printk(KERN_WARNING PFX "WARNING! Changing of MTU on this "
+                       "NIC may lead to frame reception errors!\n");
 
        tp->rx_buf_sz = (max_frame > RX_BUF_SIZE) ? max_frame : RX_BUF_SIZE;
 }