From: Joe Perches Date: Sun, 31 Jan 2010 10:02:09 +0000 (+0000) Subject: drivers/net/amd8111e.c: Fix continuation line formats X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=91e83432f8abc1fc93499a2323f6c4bd6026029e;p=deliverable%2Flinux.git drivers/net/amd8111e.c: Fix continuation line formats String constants that are continued on subsequent lines with \ are not good. Signed-off-by: Joe Perches Signed-off-by: David S. Miller --- diff --git a/drivers/net/amd8111e.c b/drivers/net/amd8111e.c index 545c791f477e..bb27b27d9672 100644 --- a/drivers/net/amd8111e.c +++ b/drivers/net/amd8111e.c @@ -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); }