aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/uwb
diff options
context:
space:
mode:
authorDavid Vrabel <david.vrabel@csr.com>2009-08-25 10:07:12 -0400
committerDavid Vrabel <david.vrabel@csr.com>2009-08-25 10:07:12 -0400
commita9e75a389254801ca160b72c6e221e5bb7e35df9 (patch)
tree18c7b909caf7b2f6cb3d065205b5b2db60b1c115 /drivers/uwb
parent3fafdd7cc810a8fcd28b83fbde2d0e25830dee41 (diff)
uwb: stop uwbd thread if rc->start() fails
This fixes an oops when uwbd thread continues running after a failed radio controller start. Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/uwb')
-rw-r--r--drivers/uwb/lc-rc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/uwb/lc-rc.c b/drivers/uwb/lc-rc.c
index 9cf21e6bb624..9611ef3b787a 100644
--- a/drivers/uwb/lc-rc.c
+++ b/drivers/uwb/lc-rc.c
@@ -288,8 +288,8 @@ error_sys_add:
288error_dev_add: 288error_dev_add:
289error_rc_setup: 289error_rc_setup:
290 rc->stop(rc); 290 rc->stop(rc);
291 uwbd_stop(rc);
292error_rc_start: 291error_rc_start:
292 uwbd_stop(rc);
293 return result; 293 return result;
294} 294}
295EXPORT_SYMBOL_GPL(uwb_rc_add); 295EXPORT_SYMBOL_GPL(uwb_rc_add);