diff options
author | Joe Perches <joe@perches.com> | 2010-02-03 18:44:44 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-03 18:44:44 -0800 |
commit | b1681c56f5b6bf551bed2617a395855055836571 (patch) | |
tree | 49d77f8d258c87b754cfeecfad615b9edbbd225f | |
parent | 3dabcfef3e668f6dd32147d810a29ccbd55dc963 (diff) | |
download | linux-3.10-b1681c56f5b6bf551bed2617a395855055836571.tar.gz linux-3.10-b1681c56f5b6bf551bed2617a395855055836571.tar.bz2 linux-3.10-b1681c56f5b6bf551bed2617a395855055836571.zip |
drivers/ide: Fix continuation line formats
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>
-rw-r--r-- | drivers/ide/au1xxx-ide.c | 4 | ||||
-rw-r--r-- | drivers/ide/pmac.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ide/au1xxx-ide.c b/drivers/ide/au1xxx-ide.c index e2fd378ba9d..bd0930a60b0 100644 --- a/drivers/ide/au1xxx-ide.c +++ b/drivers/ide/au1xxx-ide.c @@ -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); diff --git a/drivers/ide/pmac.c b/drivers/ide/pmac.c index 9fae1fb1468..850ee452e9b 100644 --- a/drivers/ide/pmac.c +++ b/drivers/ide/pmac.c @@ -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; } } |