Commit 71409a498e96a421bdc20e7275ebc4fab8b14cdc
Committed by
Greg Kroah-Hartman
1 parent
1f4ebbbf18
Exists in
master
and in
7 other branches
kobject: two typo fixes
This fixes two typos from commit 34358c26a2c96b2a068dc44e0ac602106a466bce. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
lib/kobject.c
... | ... | @@ -313,8 +313,8 @@ |
313 | 313 | struct kobject *temp_kobj; |
314 | 314 | temp_kobj = kset_find_obj(kobj->kset, new_name); |
315 | 315 | if (temp_kobj) { |
316 | - printk(KERN_WARNING "kobject '%s' can not be renamed " | |
317 | - "to '%s' as '%s' is already in existance.\n", | |
316 | + printk(KERN_WARNING "kobject '%s' cannot be renamed " | |
317 | + "to '%s' as '%s' is already in existence.\n", | |
318 | 318 | kobject_name(kobj), new_name, new_name); |
319 | 319 | kobject_put(temp_kobj); |
320 | 320 | return -EINVAL; |