]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
drivers/ide: Fix continuation line formats
authorJoe Perches <joe@perches.com>
Thu, 4 Feb 2010 02:44:44 +0000 (18:44 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 Feb 2010 02:44:44 +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/ide/au1xxx-ide.c
drivers/ide/pmac.c

index e2fd378ba9de6eff72d3c2771402800f274fbc09..bd0930a60b0c63fcfff5bc63356db35535b71b8e 100644 (file)
@@ -299,8 +299,8 @@ static int auide_dma_test_irq(ide_drive_t *drive)
         */
        drive->waiting_for_dma++;
        if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
-               printk(KERN_WARNING "%s: timeout waiting for ddma to \
-                                     complete\n", drive->name);
+               printk(KERN_WARNING "%s: timeout waiting for ddma to complete\n",
+                      drive->name);
                return 1;
        }
        udelay(10);
index 9fae1fb1468b0b13105e7667e8dba7c0be6d43ad..850ee452e9bb34db31d833cab4a9f66674b92658 100644 (file)
@@ -1650,8 +1650,8 @@ pmac_ide_dma_test_irq (ide_drive_t *drive)
                if ((status & FLUSH) == 0)
                        break;
                if (++timeout > 100) {
-                       printk(KERN_WARNING "ide%d, ide_dma_test_irq \
-                       timeout flushing channel\n", hwif->index);
+                       printk(KERN_WARNING "ide%d, ide_dma_test_irq timeout flushing channel\n",
+                              hwif->index);
                        break;
                }
        }