aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/uwb
diff options
context:
space:
mode:
authorDavid Vrabel <david.vrabel@csr.com>2008-11-17 16:23:22 +0000
committerDavid Vrabel <david.vrabel@csr.com>2008-11-19 14:47:16 +0000
commit0996e6382482ce9014787693d3884e9468153a5c (patch)
tree28cbbf373b61b98445ae84bef6f25e6625fee922 /drivers/uwb
parentwlp: start/stop radio on network interface up/down (diff)
downloadlinux-dev-0996e6382482ce9014787693d3884e9468153a5c.tar.xz
linux-dev-0996e6382482ce9014787693d3884e9468153a5c.zip
uwb: remove unused beacon group join/leave events
The UWB_NOTIF_BG_JOIN/UWB_NOTIF_BG_LEAVE events have been superceeded by the channel_changed callback in struct uwb_pal. Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/uwb')
-rw-r--r--drivers/uwb/beacon.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/uwb/beacon.c b/drivers/uwb/beacon.c
index 247956098afa..d9c60cb94993 100644
--- a/drivers/uwb/beacon.c
+++ b/drivers/uwb/beacon.c
@@ -140,10 +140,8 @@ int uwb_rc_beacon(struct uwb_rc *rc, int channel, unsigned bpst_offset)
}
}
- if (result >= 0) {
+ if (result >= 0)
rc->beaconing = channel;
- uwb_notify(rc, NULL, uwb_bg_joined(rc) ? UWB_NOTIF_BG_JOIN : UWB_NOTIF_BG_LEAVE);
- }
return result;
}
@@ -581,19 +579,6 @@ error:
return result;
}
-/**
- * uwb_bg_joined - is the RC in a beacon group?
- * @rc: the radio controller
- *
- * Returns true if the radio controller is in a beacon group (even if
- * it's the sole member).
- */
-int uwb_bg_joined(struct uwb_rc *rc)
-{
- return rc->beaconing != -1;
-}
-EXPORT_SYMBOL_GPL(uwb_bg_joined);
-
/*
* Print beaconing state.
*/