]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
staging: tidspbridge: remove ref counting in nldr.c
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Fri, 9 Mar 2012 00:03:51 +0000 (01:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 9 Mar 2012 21:21:08 +0000 (13:21 -0800)
The nldr module has a nldr_init() and a nldr_exit() whose only purpose
is to keep a reference counting which is not used at all.

This patch only removes the reference count variable, but not the
functions, because they are used through an interface.

There is no functional changes.

Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/tidspbridge/rmgr/nldr.c

index a9d7a320afd5ab72fe914cf85dca66b163750cce..46086b5b04cc27c0551a8164835861cf41405e43 100644 (file)
@@ -263,8 +263,6 @@ static struct dbll_fxns ldr_fxns = {
        (dbll_unload_fxn) dbll_unload,
 };
 
-static u32 refs;               /* module reference count */
-
 static int add_ovly_info(void *handle, struct dbll_sect_info *sect_info,
                                u32 addr, u32 bytes);
 static int add_ovly_node(struct dsp_uuid *uuid_obj,
@@ -627,7 +625,7 @@ void nldr_delete(struct nldr_object *nldr_obj)
  */
 void nldr_exit(void)
 {
-       refs--;
+       /* do nothing */
 }
 
 /*
@@ -743,8 +741,7 @@ int nldr_get_rmm_manager(struct nldr_object *nldr,
  */
 bool nldr_init(void)
 {
-       refs++;
-
+       /* do nothing */
        return true;
 }