Jesse Keating 2f82dda
--- linux-2.6.26.noarch/drivers/base/power/main.c~	2008-08-22 20:57:57.000000000 -0400
Jesse Keating 2f82dda
+++ linux-2.6.26.noarch/drivers/base/power/main.c	2008-08-22 20:58:05.000000000 -0400
Jesse Keating 2f82dda
@@ -69,9 +69,6 @@ void device_pm_unlock(void)
Jesse Keating 2f82dda
  */
Jesse Keating 2f82dda
 void device_pm_add(struct device *dev)
Jesse Keating 2f82dda
 {
Jesse Keating 2f82dda
-	pr_debug("PM: Adding info for %s:%s\n",
Jesse Keating 2f82dda
-		 dev->bus ? dev->bus->name : "No Bus",
Jesse Keating 2f82dda
-		 kobject_name(&dev->kobj));
Jesse Keating 2f82dda
 	mutex_lock(&dpm_list_mtx);
Jesse Keating 2f82dda
 	if (dev->parent) {
Jesse Keating 2f82dda
 		if (dev->parent->power.status >= DPM_SUSPENDING)
Jesse Keating 2f82dda
From b4e96f34c17e5a79cd28774cc722bb33e7e02c6e Mon Sep 17 00:00:00 2001
Jesse Keating 2f82dda
From: Peter Jones <pjones@redhat.com>
Jesse Keating 2f82dda
Date: Thu, 25 Sep 2008 16:23:33 -0400
Jesse Keating 2f82dda
Subject: [PATCH] Don't print an error message just because there's no i8042 chip.
Jesse Keating 2f82dda
Jesse Keating 2f82dda
Some systems, such as EFI-based Apple systems, won't necessarily have an
Jesse Keating 2f82dda
i8042 to initialize.  We shouldn't be printing an error message in this
Jesse Keating 2f82dda
case, since not detecting the chip is the correct behavior.
Jesse Keating 2f82dda
---
Jesse Keating 2f82dda
 drivers/input/serio/i8042.c |    4 +---
Jesse Keating 2f82dda
 1 files changed, 1 insertions(+), 3 deletions(-)
Jesse Keating 2f82dda
Jesse Keating 2f82dda
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
Jesse Keating 2f82dda
index 170f71e..4f3e632 100644
Jesse Keating 2f82dda
--- a/drivers/input/serio/i8042.c
Jesse Keating 2f82dda
+++ b/drivers/input/serio/i8042.c
Jesse Keating 2f82dda
@@ -701,10 +701,8 @@ static int __devinit i8042_check_aux(void)
Jesse Keating 2f82dda
 
Jesse Keating 2f82dda
 static int i8042_controller_check(void)
Jesse Keating 2f82dda
 {
Jesse Keating 2f82dda
-	if (i8042_flush() == I8042_BUFFER_SIZE) {
Jesse Keating 2f82dda
-		printk(KERN_ERR "i8042.c: No controller found.\n");
Jesse Keating 2f82dda
+	if (i8042_flush() == I8042_BUFFER_SIZE)
Jesse Keating 2f82dda
 		return -ENODEV;
Jesse Keating 2f82dda
-	}
Jesse Keating 2f82dda
 
Jesse Keating 2f82dda
 	return 0;
Jesse Keating 2f82dda
 }
Jesse Keating 2f82dda
-- 
Jesse Keating 2f82dda
1.6.0.1
Jesse Keating 2f82dda
Jesse Keating 2f82dda
Socket fuzzers like sfuzz will trigger this printk a lot, even though it's
Jesse Keating 2f82dda
ratelimited. It isn't particularly useful, so just remove it.
Jesse Keating 2f82dda
Jesse Keating 2f82dda
Signed-off-by: Dave Jones <davej@redhat.com>
Jesse Keating 2f82dda
Jesse Keating 2f82dda
--- linux-2.6.27.noarch/net/can/af_can.c~	2008-12-11 16:53:48.000000000 -0500
Jesse Keating 2f82dda
+++ linux-2.6.27.noarch/net/can/af_can.c	2008-12-11 16:54:42.000000000 -0500
Jesse Keating 2f82dda
@@ -134,13 +134,9 @@ static int can_create(struct net *net, s
Jesse Keating 2f82dda
 		err = request_module("can-proto-%d", protocol);
Jesse Keating 2f82dda
 
Jesse Keating 2f82dda
 		/*
Jesse Keating 2f82dda
-		 * In case of error we only print a message but don't
Jesse Keating 2f82dda
-		 * return the error code immediately.  Below we will
Jesse Keating 2f82dda
-		 * return -EPROTONOSUPPORT
Jesse Keating 2f82dda
+		 * In case of error we don't return the error code immediately.
Jesse Keating 2f82dda
+		 * Below we will return -EPROTONOSUPPORT
Jesse Keating 2f82dda
 		 */
Jesse Keating 2f82dda
-		if (err && printk_ratelimit())
Jesse Keating 2f82dda
-			printk(KERN_ERR "can: request_module "
Jesse Keating 2f82dda
-			       "(can-proto-%d) failed.\n", protocol);
Jesse Keating 2f82dda
 	}
Jesse Keating 2f82dda
 #endif
Jesse Keating 2f82dda