diff options
Diffstat (limited to 'net/mac802154/mac802154.h')
-rw-r--r-- | net/mac802154/mac802154.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/mac802154/mac802154.h b/net/mac802154/mac802154.h index d48422e27110..4619486f1da2 100644 --- a/net/mac802154/mac802154.h +++ b/net/mac802154/mac802154.h | |||
@@ -76,6 +76,7 @@ struct mac802154_sub_if_data { | |||
76 | 76 | ||
77 | __le16 pan_id; | 77 | __le16 pan_id; |
78 | __le16 short_addr; | 78 | __le16 short_addr; |
79 | __le64 extended_addr; | ||
79 | 80 | ||
80 | u8 chan; | 81 | u8 chan; |
81 | u8 page; | 82 | u8 page; |
@@ -106,11 +107,11 @@ netdev_tx_t mac802154_tx(struct mac802154_priv *priv, struct sk_buff *skb, | |||
106 | u8 page, u8 chan); | 107 | u8 page, u8 chan); |
107 | 108 | ||
108 | /* MIB callbacks */ | 109 | /* MIB callbacks */ |
109 | void mac802154_dev_set_short_addr(struct net_device *dev, u16 val); | 110 | void mac802154_dev_set_short_addr(struct net_device *dev, __le16 val); |
110 | u16 mac802154_dev_get_short_addr(const struct net_device *dev); | 111 | __le16 mac802154_dev_get_short_addr(const struct net_device *dev); |
111 | void mac802154_dev_set_ieee_addr(struct net_device *dev); | 112 | void mac802154_dev_set_ieee_addr(struct net_device *dev); |
112 | u16 mac802154_dev_get_pan_id(const struct net_device *dev); | 113 | __le16 mac802154_dev_get_pan_id(const struct net_device *dev); |
113 | void mac802154_dev_set_pan_id(struct net_device *dev, u16 val); | 114 | void mac802154_dev_set_pan_id(struct net_device *dev, __le16 val); |
114 | void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan); | 115 | void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan); |
115 | u8 mac802154_dev_get_dsn(const struct net_device *dev); | 116 | u8 mac802154_dev_get_dsn(const struct net_device *dev); |
116 | 117 | ||