Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4c62b53454a83178676e5ecae6665447d363c7b4
Commit:     4c62b53454a83178676e5ecae6665447d363c7b4
Parent:     b23cdde4c6240d70bb3d2e3c4046b60d6f6c8451
Author:     Satyam Sharma <[EMAIL PROTECTED]>
AuthorDate: Wed Jun 27 16:02:14 2007 +0530
Committer:  Mark Fasheh <[EMAIL PROTECTED]>
CommitDate: Tue Jul 10 16:52:25 2007 -0700

    configfs: misc cleanups
    
    1. item.c:config_item_cleanup() is a private function (only called by
    config_item_release() in same file). However, it is spuriously
    exported in include/linux/configfs.h, so remove that export and make
    it static in item.c. Also, it is no longer exported / interface
    function, so no need to give comment for this function (the comment
    was stating obvious thing, anyway).
    
    2. Kernel-doc comment format does not allow empty line between end of
    comment and start of function (declaration line). There were several
    such spurious empty lines in item.c, so fix them.
    
      fs/configfs/item.c       |   15 +++------------
      include/linux/configfs.h |    1 -
      2 files changed, 3 insertions(+), 13 deletions(-)
    
    Signed-off-by: Satyam Sharma <[EMAIL PROTECTED]>
    Signed-off-by: Joel Becker <[EMAIL PROTECTED]>
    Signed-off-by: Mark Fasheh <[EMAIL PROTECTED]>
---
 fs/configfs/item.c       |   15 +++------------
 include/linux/configfs.h |    1 -
 2 files changed, 3 insertions(+), 13 deletions(-)

diff --git a/fs/configfs/item.c b/fs/configfs/item.c
index 2442120..b762bbe 100644
--- a/fs/configfs/item.c
+++ b/fs/configfs/item.c
@@ -62,7 +62,6 @@ void config_item_init(struct config_item * item)
  *     dynamically allocated string that @item->ci_name points to.
  *     Otherwise, use the static @item->ci_namebuf array.
  */
-
 int config_item_set_name(struct config_item * item, const char * fmt, ...)
 {
        int error = 0;
@@ -139,12 +138,7 @@ struct config_item * config_item_get(struct config_item * 
item)
        return item;
 }
 
-/**
- *     config_item_cleanup - free config_item resources.
- *     @item:  item.
- */
-
-void config_item_cleanup(struct config_item * item)
+static void config_item_cleanup(struct config_item * item)
 {
        struct config_item_type * t = item->ci_type;
        struct config_group * s = item->ci_group;
@@ -179,12 +173,10 @@ void config_item_put(struct config_item * item)
                kref_put(&item->ci_kref, config_item_release);
 }
 
-
 /**
  *     config_group_init - initialize a group for use
  *     @k:     group
  */
-
 void config_group_init(struct config_group *group)
 {
        config_item_init(&group->cg_item);
@@ -201,8 +193,8 @@ void config_group_init(struct config_group *group)
  *     looking for a matching config_item. If matching item is found
  *     take a reference and return the item.
  */
-
-struct config_item * config_group_find_obj(struct config_group * group, const 
char * name)
+struct config_item *config_group_find_obj(struct config_group *group,
+                                         const char * name)
 {
        struct list_head * entry;
        struct config_item * ret = NULL;
@@ -219,7 +211,6 @@ struct config_item * config_group_find_obj(struct 
config_group * group, const ch
        return ret;
 }
 
-
 EXPORT_SYMBOL(config_item_init);
 EXPORT_SYMBOL(config_group_init);
 EXPORT_SYMBOL(config_item_get);
diff --git a/include/linux/configfs.h b/include/linux/configfs.h
index fef6f3d..3d4a96e 100644
--- a/include/linux/configfs.h
+++ b/include/linux/configfs.h
@@ -75,7 +75,6 @@ extern void config_item_init(struct config_item *);
 extern void config_item_init_type_name(struct config_item *item,
                                       const char *name,
                                       struct config_item_type *type);
-extern void config_item_cleanup(struct config_item *);
 
 extern struct config_item * config_item_get(struct config_item *);
 extern void config_item_put(struct config_item *);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to