mac_cmd.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * MAC commands interface
  3. *
  4. * Copyright 2007-2012 Siemens AG
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2
  8. * as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. * Written by:
  20. * Sergey Lapin <slapin@ossfans.org>
  21. * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
  22. * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
  23. */
  24. #include <linux/skbuff.h>
  25. #include <linux/if_arp.h>
  26. #include <net/ieee802154_netdev.h>
  27. #include <net/wpan-phy.h>
  28. #include <net/mac802154.h>
  29. #include "mac802154.h"
  30. struct wpan_phy *mac802154_get_phy(const struct net_device *dev)
  31. {
  32. struct mac802154_sub_if_data *priv = netdev_priv(dev);
  33. BUG_ON(dev->type != ARPHRD_IEEE802154);
  34. return to_phy(get_device(&priv->hw->phy->dev));
  35. }
  36. struct ieee802154_reduced_mlme_ops mac802154_mlme_reduced = {
  37. .get_phy = mac802154_get_phy,
  38. };