* [PATCH] quiet IDE resource reservation messages
@ 2005-12-17 17:30 Jesse Barnes
0 siblings, 0 replies; only message in thread
From: Jesse Barnes @ 2005-12-17 17:30 UTC (permalink / raw)
To: Bartlomiej Zolnierkiewicz, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 296 bytes --]
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@virtuousgeek.org>
Thanks,
Jesse
[-- Attachment #2: ide-silence-info.patch --]
[-- Type: text/x-diff, Size: 895 bytes --]
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;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-12-17 17:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-17 17:30 [PATCH] quiet IDE resource reservation messages Jesse Barnes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®