#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/err.h>
#include <linux/kdev_t.h>
#include <linux/slab.h>
#include "uwb-internal.h"
Go to the source code of this file.
|
struct uwb_rc_cmd_start_beacon | __attribute__ ((packed)) |
|
int | uwb_rc_beacon (struct uwb_rc *rc, int channel, unsigned bpst_offset) |
|
void | uwb_bce_kfree (struct kref *_bce) |
|
struct uwb_dev * | uwb_dev_get_by_devaddr (struct uwb_rc *rc, const struct uwb_dev_addr *devaddr) |
|
struct uwb_dev * | uwb_dev_get_by_macaddr (struct uwb_rc *rc, const struct uwb_mac_addr *macaddr) |
|
void | uwb_beca_purge (struct uwb_rc *rc) |
|
void | uwb_beca_release (struct uwb_rc *rc) |
|
ssize_t | uwb_bce_print_IEs (struct uwb_dev *uwb_dev, struct uwb_beca_e *bce, char *buf, size_t size) |
|
int | uwbd_evt_handle_rc_beacon (struct uwb_event *evt) |
|
int | uwbd_evt_handle_rc_beacon_size (struct uwb_event *evt) |
|
int | uwbd_evt_handle_rc_bp_slot_change (struct uwb_event *evt) |
|
int | uwbd_evt_handle_rc_bpoie_change (struct uwb_event *evt) |
|
| DEVICE_ATTR (beacon, S_IRUGO|S_IWUSR, uwb_rc_beacon_show, uwb_rc_beacon_store) |
|
mcontroller : adapter info structure for old mimd_t apps
: base address : irq number : number of logical drives : pci bus : pci device : pci function : pci id : vendor id : slot number : unique id
Definition at line 171 of file esd_usb2.c.
DEVICE_ATTR |
( |
beacon |
, |
|
|
S_IRUGO| |
S_IWUSR, |
|
|
uwb_rc_beacon_show |
, |
|
|
uwb_rc_beacon_store |
|
|
) |
| |
uwb_dev_get_by_devaddr - get a UWB device with a specific DevAddr : the radio controller that saw the device : DevAddr of the UWB device to find
There may be more than one matching device (in the case of a DevAddr conflict), but only the first one is returned.
Definition at line 209 of file beacon.c.
uwb_dev_get_by_macaddr - get a UWB device with a specific EUI-48 : the radio controller that saw the device : EUI-48 of the UWB device to find
Definition at line 229 of file beacon.c.
uwbd_evt_handle_rc_bp_slot_change - handle a BP_SLOT_CHANGE event : the BP_SLOT_CHANGE notification from the radio controller
If the event indicates that no beacon period slots were available then radio controller has transitioned to a non-beaconing state. Otherwise, simply save the current beacon slot.
Definition at line 506 of file beacon.c.