drivers/net/amd8111e.c: Fix continuation line formats
authorJoe Perches <joe@perches.com>
Sun, 31 Jan 2010 10:02:09 +0000 (10:02 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 Feb 2010 02:44:02 +0000 (18:44 -0800)
String constants that are continued on subsequent lines with \
are not good.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/amd8111e.c

index 545c791..bb27b27 100644 (file)
@@ -1176,8 +1176,7 @@ static irqreturn_t amd8111e_interrupt(int irq, void *dev_id)
                        /* Schedule a polling routine */
                        __napi_schedule(&lp->napi);
                } else if (intren0 & RINTEN0) {
-                       printk("************Driver bug! \
-                               interrupt while in poll\n");
+                       printk("************Driver bug! interrupt while in poll\n");
                        /* Fix by disable receive interrupts */
                        writel(RINTEN0, mmio + INTEN0);
                }