diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c index 02167a5..57325a2 100644 --- a/drivers/ide/ide-probe.c +++ b/drivers/ide/ide-probe.c @@ -773,7 +773,7 @@ static void probe_hwif(ide_hwif_t *hwif) } } if (!msgout) - printk(KERN_ERR "%s: ports already in use, skipping probe\n", + printk(KERN_INFO "%s: ports already in use, skipping probe\n", hwif->name); return; } diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c index 8af179b..84dd69b 100644 --- a/drivers/ide/ide.c +++ b/drivers/ide/ide.c @@ -366,8 +366,8 @@ static struct resource* hwif_request_reg struct resource *res = request_region(addr, num, hwif->name); if (!res) - printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n", - hwif->name, addr, addr+num-1); + printk(KERN_INFO "%s: I/O resource 0x%lX-0x%lX not free.\n", + hwif->name, addr, addr+num-1); return res; }