From: Bartlomiej Zolnierkiewicz Date: Tue, 15 Jul 2008 19:21:53 +0000 (+0200) Subject: ide-tape: remove superfluous error message from idetape_pc_intr() X-Git-Tag: v2.6.27-rc1~1078^2~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e049a8ea190b7cc22320c7797b36b2c6128c9c5;p=platform%2Fkernel%2Flinux-exynos.git ide-tape: remove superfluous error message from idetape_pc_intr() ide_dma_off() prints info about DMA being disabled. Cc: Borislav Petkov Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c index 58c5a5a..92fadd5 100644 --- a/drivers/ide/ide-tape.c +++ b/drivers/ide/ide-tape.c @@ -842,7 +842,6 @@ static ide_startstop_t idetape_pc_intr(ide_drive_t *drive) pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS; printk(KERN_ERR "ide-tape: The tape wants to issue more " "interrupts in DMA mode\n"); - printk(KERN_ERR "ide-tape: DMA disabled, reverting to PIO\n"); ide_dma_off(drive); return ide_do_reset(drive); }