projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d83947
)
uwb: initialize the debug sub-system
author
David Vrabel
<david.vrabel@csr.com>
Wed, 17 Sep 2008 15:34:34 +0000
(16:34 +0100)
committer
David Vrabel
<dv02@dv02pc01.europe.root.pri>
Wed, 17 Sep 2008 15:54:33 +0000
(16:54 +0100)
Call uwb_dbg_init() so the debugfs files are accessible.
Signed-off-by: David Vrabel <david.vrabel@csr.com>
drivers/uwb/driver.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/uwb/driver.c
b/drivers/uwb/driver.c
index 7eee8e408308da4c31f3ebec5202573df96cdee8..521cdeb849710823f1b14adb466d3b5515a2dab3 100644
(file)
--- 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();