diff options
| author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-12-17 23:05:35 -0700 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 20:40:38 -0800 | 
| commit | f9cb074bff8e762ef24c44678a5a7d907f82fbeb (patch) | |
| tree | 50438fc90b8f6170dd8eb5d43712c61719a16304 /lib/kobject.c | |
| parent | e1543ddf739b22a8c4218716ad50c26b3e147403 (diff) | |
| download | olio-linux-3.10-f9cb074bff8e762ef24c44678a5a7d907f82fbeb.tar.xz olio-linux-3.10-f9cb074bff8e762ef24c44678a5a7d907f82fbeb.zip  | |
Kobject: rename kobject_init_ng() to kobject_init()
Now that the old kobject_init() function is gone, rename
kobject_init_ng() to kobject_init() to clean up the namespace.
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
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 10d977b6e69..4cc231c8622 100644 --- a/lib/kobject.c +++ b/lib/kobject.c @@ -287,7 +287,7 @@ int kobject_set_name(struct kobject *kobj, const char *fmt, ...)  EXPORT_SYMBOL(kobject_set_name);  /** - * kobject_init_ng - initialize a kobject structure + * kobject_init - initialize a kobject structure   * @kobj: pointer to the kobject to initialize   * @ktype: pointer to the ktype for this kobject.   * @@ -298,7 +298,7 @@ EXPORT_SYMBOL(kobject_set_name);   * to kobject_put(), not by a call to kfree directly to ensure that all of   * the memory is cleaned up properly.   */ -void kobject_init_ng(struct kobject *kobj, struct kobj_type *ktype) +void kobject_init(struct kobject *kobj, struct kobj_type *ktype)  {  	char *err_str; @@ -326,7 +326,7 @@ error:  	printk(KERN_ERR "kobject: %s\n", err_str);  	dump_stack();  } -EXPORT_SYMBOL(kobject_init_ng); +EXPORT_SYMBOL(kobject_init);  static int kobject_add_varg(struct kobject *kobj, struct kobject *parent,  			    const char *fmt, va_list vargs) @@ -401,7 +401,7 @@ EXPORT_SYMBOL(kobject_add);   * @parent: pointer to the parent of this kobject.   * @fmt: the name of the kobject.   * - * This function combines the call to kobject_init_ng() and + * This function combines the call to kobject_init() and   * kobject_add().  The same type of error handling after a call to   * kobject_add() and kobject lifetime rules are the same here.   */ @@ -411,7 +411,7 @@ int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype,  	va_list args;  	int retval; -	kobject_init_ng(kobj, ktype); +	kobject_init(kobj, ktype);  	va_start(args, fmt);  	retval = kobject_add_varg(kobj, parent, fmt, args); @@ -636,7 +636,7 @@ static struct kobj_type dynamic_kobj_ktype = {   *   * If the kobject was not able to be created, NULL will be returned.   * The kobject structure returned from here must be cleaned up with a - * call to kobject_put() and not kfree(), as kobject_init_ng() has + * call to kobject_put() and not kfree(), as kobject_init() has   * already been called on this structure.   */  struct kobject *kobject_create(void) @@ -647,7 +647,7 @@ struct kobject *kobject_create(void)  	if (!kobj)  		return NULL; -	kobject_init_ng(kobj, &dynamic_kobj_ktype); +	kobject_init(kobj, &dynamic_kobj_ktype);  	return kobj;  }  |