diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-17 09:44:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-17 09:44:09 -0700 |
commit | 3aee0605a41399063c0ad396f1f4267108f210d3 (patch) | |
tree | c9e3ce738c3d093dbd861c5a53b63157edd893c2 /drivers/uwb/lc-rc.c | |
parent | f4c3f03838ae47a92f2d15d48ddf68deae5d7ebb (diff) | |
parent | 0396c215f301e92677d1e9a064b405e31501dc1d (diff) | |
download | linux-3aee0605a41399063c0ad396f1f4267108f210d3.tar.gz linux-3aee0605a41399063c0ad396f1f4267108f210d3.tar.bz2 linux-3aee0605a41399063c0ad396f1f4267108f210d3.zip |
Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/dvrabel/uwb
* 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/dvrabel/uwb:
uwb: avoid radio controller reset loops
uwb: stop uwbd thread if rc->start() fails
uwb: handle radio controller events with out-of-range IDs correctly
Diffstat (limited to 'drivers/uwb/lc-rc.c')
-rw-r--r-- | drivers/uwb/lc-rc.c | 2 |
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: error_dev_add: error_rc_setup: rc->stop(rc); - uwbd_stop(rc); error_rc_start: + uwbd_stop(rc); return result; } EXPORT_SYMBOL_GPL(uwb_rc_add); |