diff options
author | Greg Kroah-Hartman | 2006-05-18 19:39:21 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2006-06-21 21:40:47 +0200 |
commit | 183bd5b3da82b80920c30c4772222df8027fc364 (patch) | |
tree | 9af7f9210a044b0604d09338cd0920fbab82e3a9 | |
parent | Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/pci-2.6 (diff) | |
download | kernel-qcow2-linux-183bd5b3da82b80920c30c4772222df8027fc364.tar.gz kernel-qcow2-linux-183bd5b3da82b80920c30c4772222df8027fc364.tar.xz kernel-qcow2-linux-183bd5b3da82b80920c30c4772222df8027fc364.zip |
[PATCH] kobject: make people pay attention to kobject_add errors
These really need to be fixed, shout it out to the world.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | lib/kobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kobject.c b/lib/kobject.c index 687ab418d292..8e7c71993487 100644 --- a/lib/kobject.c +++ b/lib/kobject.c @@ -198,14 +198,14 @@ int kobject_add(struct kobject * kobj) /* be noisy on error issues */ if (error == -EEXIST) - pr_debug("kobject_add failed for %s with -EEXIST, " + printk("kobject_add failed for %s with -EEXIST, " "don't try to register things with the " "same name in the same directory.\n", kobject_name(kobj)); else - pr_debug("kobject_add failed for %s (%d)\n", + printk("kobject_add failed for %s (%d)\n", kobject_name(kobj), error); - /* dump_stack(); */ + dump_stack(); } return error; |