mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
uwb: per-radio controller event thread and beacon cache
Use an event thread per-radio controller so processing events from one radio controller doesn't delay another. A radio controller shouldn't have information on devices seen by a different radio controller (they may be on different channels) so make the beacon cache per-radio controller. Signed-off-by: Stefano Panella <stefano.panella@csr.com> Signed-off-by: David Vrabel <david.vrabel@csr.com>
This commit is contained in:
parent
6d5a681dfb
commit
fec1a5932f
6 changed files with 100 additions and 122 deletions
|
@ -118,7 +118,6 @@ static int __init uwb_subsys_init(void)
|
|||
result = class_register(&uwb_rc_class);
|
||||
if (result < 0)
|
||||
goto error_uwb_rc_class_register;
|
||||
uwbd_start();
|
||||
uwb_dbg_init();
|
||||
return 0;
|
||||
|
||||
|
@ -132,7 +131,6 @@ 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();
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue