From: David Vrabel Date: Wed, 17 Sep 2008 15:34:34 +0000 (+0100) Subject: uwb: initialize the debug sub-system X-Git-Tag: v2.6.28-rc1~59^2~5^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d53b1bebe23a6efe4f0a0ff75df2424e013fe07;p=profile%2Fivi%2Fkernel-x86-ivi.git uwb: initialize the debug sub-system Call uwb_dbg_init() so the debugfs files are accessible. Signed-off-by: David Vrabel --- diff --git a/drivers/uwb/driver.c b/drivers/uwb/driver.c index 7eee8e4..521cdeb 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();