diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2012-05-08 11:35:37 -0600 | 
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2012-05-08 11:35:37 -0600 | 
| commit | 7b96c686223a5c902d6a59c7d178f3904f0ab757 (patch) | |
| tree | fe328ed56ad3719de3cfebad72ef74e34f1ed92b /lib/kobject.c | |
| parent | f141ed65f256ec036c7fba604da6b7c448096ef9 (diff) | |
| parent | d48b97b403d23f6df0b990cee652bdf9a52337a3 (diff) | |
| download | olio-linux-3.10-7b96c686223a5c902d6a59c7d178f3904f0ab757.tar.xz olio-linux-3.10-7b96c686223a5c902d6a59c7d178f3904f0ab757.zip  | |
Merge tag 'v3.4-rc6' into gpio/next
Linux 3.4-rc6
Diffstat (limited to 'lib/kobject.c')
| -rw-r--r-- | lib/kobject.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/kobject.c b/lib/kobject.c index 21dee7c19af..aeefa8bc8b1 100644 --- a/lib/kobject.c +++ b/lib/kobject.c @@ -192,14 +192,14 @@ static int kobject_add_internal(struct kobject *kobj)  		/* be noisy on error issues */  		if (error == -EEXIST) -			printk(KERN_ERR "%s failed for %s with " -			       "-EEXIST, don't try to register things with " -			       "the same name in the same directory.\n", -			       __func__, kobject_name(kobj)); +			WARN(1, "%s failed for %s with " +			     "-EEXIST, don't try to register things with " +			     "the same name in the same directory.\n", +			     __func__, kobject_name(kobj));  		else -			printk(KERN_ERR "%s failed for %s (%d)\n", -			       __func__, kobject_name(kobj), error); -		dump_stack(); +			WARN(1, "%s failed for %s (error: %d parent: %s)\n", +			     __func__, kobject_name(kobj), error, +			     parent ? kobject_name(parent) : "'none'");  	} else  		kobj->state_in_sysfs = 1;  |