summaryrefslogtreecommitdiff
path: root/drivers/staging/tidspbridge/pmgr
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2012-03-09 04:03:39 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-03-10 01:21:06 +0400
commit18ff159260bac8b62bc12bcdfe2aaf1eeb1f2b42 (patch)
treee23287e3527473dd53a880986fca9e2df19eb2a0 /drivers/staging/tidspbridge/pmgr
parent02a63f9dbc4fec17e441206ddcc2327242fac3fc (diff)
downloadlinux-18ff159260bac8b62bc12bcdfe2aaf1eeb1f2b42.tar.xz
staging: tidspbridge: remove node_init() and node_exit()
The node module has a node_init() and a node_exit() whose only purpose is to keep a reference counting which is not used at all. This patch removes these functions and the reference count variable. 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/dspapi.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/staging/tidspbridge/pmgr/dspapi.c b/drivers/staging/tidspbridge/pmgr/dspapi.c
index 7c20a0f1c1a4..a5f1f6514f88 100644
--- a/drivers/staging/tidspbridge/pmgr/dspapi.c
+++ b/drivers/staging/tidspbridge/pmgr/dspapi.c
@@ -273,7 +273,6 @@ void api_exit(void)
io_exit();
strm_exit();
disp_exit();
- node_exit();
mgr_exit();
rmm_exit();
}
@@ -288,12 +287,11 @@ bool api_init(void)
{
bool ret = true;
bool fdev, fchnl, fmsg, fio;
- bool fmgr, fnode, fdisp, fstrm, frmm;
+ bool fmgr, fdisp, fstrm, frmm;
if (api_c_refs == 0) {
/* initialize driver and other modules */
fmgr = mgr_init();
- fnode = node_init();
fdisp = disp_init();
fstrm = strm_init();
frmm = rmm_init();
@@ -311,9 +309,6 @@ bool api_init(void)
if (fstrm)
strm_exit();
- if (fnode)
- node_exit();
-
if (fdisp)
disp_exit();