lkml.org 
[lkml]   [2005]   [Dec]   [17]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
FromJesse Barnes <>
Subject[PATCH] quiet IDE resource reservation messages
DateSat, 17 Dec 2005 09:30:24 -0800
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
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;
}
\
 
 \ /
  Last update: 2005-12-17 18:32    [from the cache]
©2003-2009