diff options
author | alex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com> | 2012-05-15 16:50:25 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-16 15:17:08 -0400 |
commit | 6e2128d42af43906d8bcbed7cf2207244fa4301e (patch) | |
tree | fed957f28a1f7beebe38eb5734190e69f6387f93 /net/mac802154 | |
parent | 4d23c9cc075e778584aa74da402f6bf968ad92b7 (diff) |
mac802154: basic MAC commands interface support
Declare set of MAC-commands for reduced functionality interface.
Signed-off-by: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac802154')
-rw-r--r-- | net/mac802154/Makefile | 2 | ||||
-rw-r--r-- | net/mac802154/mac802154.h | 2 | ||||
-rw-r--r-- | net/mac802154/mac_cmd.c | 45 |
3 files changed, 48 insertions, 1 deletions
diff --git a/net/mac802154/Makefile b/net/mac802154/Makefile index 490beef7176e..4d9dd0f3b969 100644 --- a/net/mac802154/Makefile +++ b/net/mac802154/Makefile | |||
@@ -1,2 +1,2 @@ | |||
1 | obj-$(CONFIG_MAC802154) += mac802154.o | 1 | obj-$(CONFIG_MAC802154) += mac802154.o |
2 | mac802154-objs := ieee802154_dev.o rx.o tx.o | 2 | mac802154-objs := ieee802154_dev.o rx.o tx.o mac_cmd.o |
diff --git a/net/mac802154/mac802154.h b/net/mac802154/mac802154.h index d53b86c75d53..7ec2821c574b 100644 --- a/net/mac802154/mac802154.h +++ b/net/mac802154/mac802154.h | |||
@@ -90,6 +90,8 @@ struct mac802154_sub_if_data { | |||
90 | 90 | ||
91 | #define MAC802154_MAX_XMIT_ATTEMPTS 3 | 91 | #define MAC802154_MAX_XMIT_ATTEMPTS 3 |
92 | 92 | ||
93 | extern struct ieee802154_reduced_mlme_ops mac802154_mlme_reduced; | ||
94 | |||
93 | netdev_tx_t mac802154_tx(struct mac802154_priv *priv, struct sk_buff *skb, | 95 | netdev_tx_t mac802154_tx(struct mac802154_priv *priv, struct sk_buff *skb, |
94 | u8 page, u8 chan); | 96 | u8 page, u8 chan); |
95 | 97 | ||
diff --git a/net/mac802154/mac_cmd.c b/net/mac802154/mac_cmd.c new file mode 100644 index 000000000000..7a5d0e052cd7 --- /dev/null +++ b/net/mac802154/mac_cmd.c | |||
@@ -0,0 +1,45 @@ | |||
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 | |||
25 | #include <linux/skbuff.h> | ||
26 | #include <linux/if_arp.h> | ||
27 | |||
28 | #include <net/ieee802154_netdev.h> | ||
29 | #include <net/wpan-phy.h> | ||
30 | #include <net/mac802154.h> | ||
31 | |||
32 | #include "mac802154.h" | ||
33 | |||
34 | struct wpan_phy *mac802154_get_phy(const struct net_device *dev) | ||
35 | { | ||
36 | struct mac802154_sub_if_data *priv = netdev_priv(dev); | ||
37 | |||
38 | BUG_ON(dev->type != ARPHRD_IEEE802154); | ||
39 | |||
40 | return to_phy(get_device(&priv->hw->phy->dev)); | ||
41 | } | ||
42 | |||
43 | struct ieee802154_reduced_mlme_ops mac802154_mlme_reduced = { | ||
44 | .get_phy = mac802154_get_phy, | ||
45 | }; | ||