[PATCH] quiet IDE resource reservation messages

From: Jesse Barnes
Date: Sat Dec 17 2005 - 12:29:21 EST


In combined mode, having IDE resources reserved before the IDE driver
can get to them is normal and expected, so quiet the 'resource
conflict' messages a bit so as not to alarm anyone (and clean up my
'quiet' boot a bit).

Signed-off-by: Jesse Barnes <jbarnes@xxxxxxxxxxxxxxxx>

Thanks,
Jesse
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;
}