public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Driver core: Reduce the level of request_firmware() messages
@ 2010-02-27 20:43 Rafael J. Wysocki
  2010-02-28  3:13 ` Greg KH
  2010-02-28  4:43 ` Jaswinder Singh Rajput
  0 siblings, 2 replies; 14+ messages in thread
From: Rafael J. Wysocki @ 2010-02-27 20:43 UTC (permalink / raw)
  To: Greg KH; +Cc: LKML, Andrew Morton

From: Rafael J. Wysocki <rjw@sisk.pl>

The messages from _request_firmware() informing that firmware is
being requested or built-in firmware is going to be used are printed
at KERN_INFO, which produces lots of noise on systems with huge
numbers of AMD CPUs.  Reduce the level of these messages to
KERN_DEBUG to get rid of that noise.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
 drivers/base/firmware_class.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Index: linux-2.6.32-SLE11-SP1/drivers/base/firmware_class.c
===================================================================
--- linux-2.6.32-SLE11-SP1.orig/drivers/base/firmware_class.c
+++ linux-2.6.32-SLE11-SP1/drivers/base/firmware_class.c
@@ -487,15 +487,14 @@ _request_firmware(const struct firmware 
 	     builtin++) {
 		if (strcmp(name, builtin->name))
 			continue;
-		dev_info(device, "firmware: using built-in firmware %s\n",
-			 name);
+		dev_dbg(device, "firmware: using built-in firmware %s\n", name);
 		firmware->size = builtin->size;
 		firmware->data = builtin->data;
 		return 0;
 	}
 
 	if (uevent)
-		dev_info(device, "firmware: requesting %s\n", name);
+		dev_dbg(device, "firmware: requesting %s\n", name);
 
 	retval = fw_setup_device(firmware, &f_dev, name, device, uevent);
 	if (retval)

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

end of thread, other threads:[~2010-03-16  0:15 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-27 20:43 [PATCH] Driver core: Reduce the level of request_firmware() messages Rafael J. Wysocki
2010-02-28  3:13 ` Greg KH
2010-02-28  4:43 ` Jaswinder Singh Rajput
2010-02-28 12:13   ` Rafael J. Wysocki
2010-02-28 16:33     ` Jaswinder Singh Rajput
2010-02-28 19:54       ` Rafael J. Wysocki
2010-02-28 20:13         ` Jaswinder Singh Rajput
2010-03-15 20:16           ` Greg KH
2010-03-15 21:27             ` Rafael J. Wysocki
2010-03-15 23:34               ` Jaswinder Singh Rajput
2010-03-15 23:40                 ` Rafael J. Wysocki
2010-03-15 23:55                   ` Jaswinder Singh Rajput
2010-03-15 23:44                 ` Greg KH
2010-03-16  0:17                   ` Rafael J. Wysocki

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