summaryrefslogtreecommitdiff
path: root/drivers/uwb
diff options
context:
space:
mode:
authorDavid Vrabel <david.vrabel@csr.com>2008-09-17 16:34:34 +0100
committerDavid Vrabel <dv02@dv02pc01.europe.root.pri>2008-09-17 16:54:33 +0100
commit9d53b1bebe23a6efe4f0a0ff75df2424e013fe07 (patch)
treea3c921d2907e40d8672236281dff1c26e1fa4ce7 /drivers/uwb
parent9d839477f85438695bd870898ffa77347e61b637 (diff)
uwb: initialize the debug sub-system
Call uwb_dbg_init() so the debugfs files are accessible. Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/uwb')
-rw-r--r--drivers/uwb/driver.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/uwb/driver.c b/drivers/uwb/driver.c
index 7eee8e40830..521cdeb8497 100644
--- a/drivers/uwb/driver.c
+++ b/drivers/uwb/driver.c
@@ -119,6 +119,7 @@ static int __init uwb_subsys_init(void)
if (result < 0)
goto error_uwb_rc_class_register;
uwbd_start();
+ uwb_dbg_init();
return 0;
error_uwb_rc_class_register:
@@ -130,6 +131,7 @@ module_init(uwb_subsys_init);
static void __exit uwb_subsys_exit(void)
{
+ uwb_dbg_exit();
uwbd_stop();
class_unregister(&uwb_rc_class);
uwb_est_destroy();