diff options
author | Stefano Panella <stefano.panella@csr.com> | 2008-11-04 14:06:31 +0000 |
---|---|---|
committer | David Vrabel <david.vrabel@csr.com> | 2008-11-04 15:53:29 +0000 |
commit | c5995bd2819dc577d0b32b26be0836d16c977e24 (patch) | |
tree | 2cc5122623ace2571b7b3080b1b9a61f8282cfd4 /drivers/uwb/uwbd.c | |
parent | f88518d122f1b007f47a46aff37ca2885126a923 (diff) | |
download | op-kernel-dev-c5995bd2819dc577d0b32b26be0836d16c977e24.zip op-kernel-dev-c5995bd2819dc577d0b32b26be0836d16c977e24.tar.gz |
uwb: infrastructure for handling Relinquish Request IEs
The structures and event handler needed to handle Relinish Request IEs
received from neighbors. Nothing is done with these IEs yet.
Signed-off-by: Stefano Panella <stefano.panella@csr.com>
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/uwb/uwbd.c')
-rw-r--r-- | drivers/uwb/uwbd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/uwb/uwbd.c b/drivers/uwb/uwbd.c index 7890841..f751135 100644 --- a/drivers/uwb/uwbd.c +++ b/drivers/uwb/uwbd.c @@ -104,6 +104,10 @@ struct uwbd_event { /** Table of handlers for and properties of the UWBD Radio Control Events */ static struct uwbd_event uwbd_events[] = { + [UWB_RC_EVT_IE_RCV] = { + .handler = uwbd_evt_handle_rc_ie_rcv, + .name = "IE_RECEIVED" + }, [UWB_RC_EVT_BEACON] = { .handler = uwbd_evt_handle_rc_beacon, .name = "BEACON_RECEIVED" |