summaryrefslogtreecommitdiff
path: root/drivers/staging/tidspbridge/pmgr
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2012-03-09 00:03:50 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-03-09 21:21:08 (GMT)
commitd111f6e94da7cf26daee5ccc06406fd4ec904350 (patch)
tree613f3223769e0317b207092065504110ec09a8ca /drivers/staging/tidspbridge/pmgr
parent52041338797a9847f8482cfa2fc8d8c40c629c3a (diff)
downloadlinux-fsl-qoriq-d111f6e94da7cf26daee5ccc06406fd4ec904350.tar.xz
staging: tidspbridge: remove gh_init() and gh_exit()
The gh module has a gh_init() and a gh_exit(), but they don't do anything, they are just noops. This patch removes these functions. 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>
Diffstat (limited to 'drivers/staging/tidspbridge/pmgr')
-rw-r--r--drivers/staging/tidspbridge/pmgr/dbll.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/drivers/staging/tidspbridge/pmgr/dbll.c b/drivers/staging/tidspbridge/pmgr/dbll.c
index 071ee86..9f07036 100644
--- a/drivers/staging/tidspbridge/pmgr/dbll.c
+++ b/drivers/staging/tidspbridge/pmgr/dbll.c
@@ -187,8 +187,6 @@ static u16 name_hash(void *key, u16 max_bucket);
static bool name_match(void *key, void *sp);
static void sym_delete(void *value);
-static u32 refs; /* module reference count */
-
/* Symbol Redefinition */
static int redefined_symbol;
static int gbl_search = 1;
@@ -268,10 +266,7 @@ void dbll_delete(struct dbll_tar_obj *target)
*/
void dbll_exit(void)
{
- refs--;
-
- if (refs == 0)
- gh_exit();
+ /* do nothing */
}
/*
@@ -394,10 +389,7 @@ int dbll_get_sect(struct dbll_library_obj *lib, char *name, u32 *paddr,
*/
bool dbll_init(void)
{
- if (refs == 0)
- gh_init();
-
- refs++;
+ /* do nothing */
return true;
}