rdev-ops.h 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#ifndef __CFG802154_RDEV_OPS
#define __CFG802154_RDEV_OPS

#include <net/cfg802154.h>

#include "core.h"

static inline struct net_device *
rdev_add_virtual_intf_deprecated(struct cfg802154_registered_device *rdev,
				 const char *name, int type)
{
	return rdev->ops->add_virtual_intf_deprecated(&rdev->wpan_phy, name,
						      type);
}

static inline void
rdev_del_virtual_intf_deprecated(struct cfg802154_registered_device *rdev,
				 struct net_device *dev)
{
	rdev->ops->del_virtual_intf_deprecated(&rdev->wpan_phy, dev);
}

23 24 25 26 27 28 29
static inline int
rdev_set_channel(struct cfg802154_registered_device *rdev, const u8 page,
		 const u8 channel)
{
	return rdev->ops->set_channel(&rdev->wpan_phy, page, channel);
}

30 31 32 33 34 35 36
static inline int
rdev_set_pan_id(struct cfg802154_registered_device *rdev,
		struct wpan_dev *wpan_dev, u16 pan_id)
{
	return rdev->ops->set_pan_id(&rdev->wpan_phy, wpan_dev, pan_id);
}

37 38 39 40 41 42 43
static inline int
rdev_set_short_addr(struct cfg802154_registered_device *rdev,
		    struct wpan_dev *wpan_dev, u16 short_addr)
{
	return rdev->ops->set_short_addr(&rdev->wpan_phy, wpan_dev, short_addr);
}

44
#endif /* __CFG802154_RDEV_OPS */