[PATCH] ide=nodma printout fix

From: Magnus Damm
Date: Tue Nov 16 2004 - 09:53:24 EST


This simple patch changes the output from this:
..
ide_setup: ide=nodmaIDE: Prevented DMA
..
to this:
..
ide_setup: ide=nodma : Prevented DMA
..

/ magnus
--- linux-2.6.10-rc2/drivers/ide/ide.c 2004-11-14 18:34:12.000000000 +0100
+++ linux-2.6.10-rc2-ide_nodma/drivers/ide/ide.c 2004-11-16 15:31:35.296394376 +0100
@@ -1846,7 +1846,7 @@
#endif /* CONFIG_BLK_DEV_IDEDOUBLER */

if (!strcmp(s, "ide=nodma")) {
- printk("IDE: Prevented DMA\n");
+ printk(" : Prevented DMA\n");
noautodma = 1;
return 1;
}