[PATCH] via-rhine trivial whitespace patch

From: Denis Vlasenko
Date: Fri Jun 17 2005 - 00:25:09 EST


Hi Jeff,

In some messages in via-rhine.c there is a leading space
for no apparent reason. This patch removes it.
--
vda
--- linux-2.6.12-rc5.src/drivers/net/via-rhine.c.orig Tue May 31 16:18:42 2005
+++ linux-2.6.12-rc5.src/drivers/net/via-rhine.c Thu Jun 16 23:19:56 2005
@@ -1397,7 +1397,7 @@ static void rhine_tx(struct net_device *
while (rp->dirty_tx != rp->cur_tx) {
txstatus = le32_to_cpu(rp->tx_ring[entry].tx_status);
if (debug > 6)
- printk(KERN_DEBUG " Tx scavenge %d status %8.8x.\n",
+ printk(KERN_DEBUG "Tx scavenge %d status %8.8x.\n",
entry, txstatus);
if (txstatus & DescOwn)
break;
@@ -1468,7 +1468,7 @@ static void rhine_rx(struct net_device *
int data_size = desc_status >> 16;

if (debug > 4)
- printk(KERN_DEBUG " rhine_rx() status is %8.8x.\n",
+ printk(KERN_DEBUG "rhine_rx() status is %8.8x.\n",
desc_status);
if (--boguscnt < 0)
break;
@@ -1486,7 +1486,7 @@ static void rhine_rx(struct net_device *
} else if (desc_status & RxErr) {
/* There was a error. */
if (debug > 2)
- printk(KERN_DEBUG " rhine_rx() Rx "
+ printk(KERN_DEBUG "rhine_rx() Rx "
"error was %8.8x.\n",
desc_status);
rp->stats.rx_errors++;