[ide] "ide=nodma" printout fix

From: Magnus Damm <magnus.damm@gmail.com>

This simple patch changes the output from this:
..
ide_setup: ide=nodmaIDE: Prevented DMA
..
to this:
..
ide_setup: ide=nodma : Prevented DMA
..
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 1fc0f33f
......@@ -1846,7 +1846,7 @@ int __init ide_setup (char *s)
#endif /* CONFIG_BLK_DEV_IDEDOUBLER */
if (!strcmp(s, "ide=nodma")) {
printk("IDE: Prevented DMA\n");
printk(" : Prevented DMA\n");
noautodma = 1;
return 1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment