2014-11-02 06:18:38 +03:00
|
|
|
#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);
|
|
|
|
}
|
|
|
|
|
2014-11-12 05:36:55 +03:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-11-02 06:18:38 +03:00
|
|
|
#endif /* __CFG802154_RDEV_OPS */
|