public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* don't bother users with unimportant messages.
@ 2006-02-19  1:09 Dave Jones
  2006-02-19  1:17 ` David S. Miller
  2006-02-19  8:15 ` Russell King
  0 siblings, 2 replies; 11+ messages in thread
From: Dave Jones @ 2006-02-19  1:09 UTC (permalink / raw)
  To: Linux Kernel

When users see these printed to the console, they think
something is wrong.  As it's just informational and something
that only developers care about, lower the printk level.

Signed-off-by: Dave Jones <davej@redhat.com>

--- linux-2.6.15.noarch/drivers/base/driver.c~	2006-02-18 19:52:36.000000000 -0500
+++ linux-2.6.15.noarch/drivers/base/driver.c	2006-02-18 20:07:51.000000000 -0500
@@ -174,7 +174,7 @@ int driver_register(struct device_driver
 	if ((drv->bus->probe && drv->probe) ||
 	    (drv->bus->remove && drv->remove) ||
 	    (drv->bus->shutdown && drv->shutdown)) {
-		printk(KERN_WARNING "Driver '%s' needs updating - please use bus_type methods\n", drv->name);
+		printk(KERN_DEBUG "Driver '%s' needs updating - please use bus_type methods\n", drv->name);
 	}
 	klist_init(&drv->klist_devices, klist_devices_get, klist_devices_put);
 	init_completion(&drv->unloaded);

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2006-02-19 22:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-19  1:09 don't bother users with unimportant messages Dave Jones
2006-02-19  1:17 ` David S. Miller
2006-02-19  8:15 ` Russell King
2006-02-19  8:29   ` Dave Jones
2006-02-19  9:31     ` Russell King
2006-02-19  9:47       ` Dave Jones
2006-02-19 17:57     ` Greg KH
2006-02-19 18:37       ` Dave Jones
2006-02-19 22:41         ` Greg KH
2006-02-19 20:36       ` Gene Heskett
2006-02-19 20:34     ` Gene Heskett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox