diff options
author | Phoebe Buckheister <phoebe.buckheister@itwm.fraunhofer.de> | 2014-03-14 16:24:02 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-03-14 22:15:26 -0400 |
commit | ae531b9475f62c5e1863508604cd6b3faf362d56 (patch) | |
tree | c719f25779f44c4241d799e44c8fc2c8c8065957 /drivers/net/ieee802154/fakehard.c | |
parent | e6278d92005e9d6e374f269b4ce39c908a68ad5d (diff) |
ieee802154: use ieee802154_addr instead of *_sa variants
Change all internal uses of ieee802154_addr_sa to ieee802154_addr,
except for those instances that communicate directly with userspace.
Signed-off-by: Phoebe Buckheister <phoebe.buckheister@itwm.fraunhofer.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ieee802154/fakehard.c')
-rw-r--r-- | drivers/net/ieee802154/fakehard.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ieee802154/fakehard.c b/drivers/net/ieee802154/fakehard.c index 3c98030e0e0b..78f18be3bbf2 100644 --- a/drivers/net/ieee802154/fakehard.c +++ b/drivers/net/ieee802154/fakehard.c | |||
@@ -119,7 +119,7 @@ static u8 fake_get_dsn(const struct net_device *dev) | |||
119 | * 802.15.4-2006 document. | 119 | * 802.15.4-2006 document. |
120 | */ | 120 | */ |
121 | static int fake_assoc_req(struct net_device *dev, | 121 | static int fake_assoc_req(struct net_device *dev, |
122 | struct ieee802154_addr_sa *addr, u8 channel, u8 page, u8 cap) | 122 | struct ieee802154_addr *addr, u8 channel, u8 page, u8 cap) |
123 | { | 123 | { |
124 | struct wpan_phy *phy = fake_to_phy(dev); | 124 | struct wpan_phy *phy = fake_to_phy(dev); |
125 | 125 | ||
@@ -149,7 +149,7 @@ static int fake_assoc_req(struct net_device *dev, | |||
149 | * 802.15.4-2006 document. | 149 | * 802.15.4-2006 document. |
150 | */ | 150 | */ |
151 | static int fake_assoc_resp(struct net_device *dev, | 151 | static int fake_assoc_resp(struct net_device *dev, |
152 | struct ieee802154_addr_sa *addr, __le16 short_addr, u8 status) | 152 | struct ieee802154_addr *addr, __le16 short_addr, u8 status) |
153 | { | 153 | { |
154 | return 0; | 154 | return 0; |
155 | } | 155 | } |
@@ -167,7 +167,7 @@ static int fake_assoc_resp(struct net_device *dev, | |||
167 | * document, with the reason described in 7.3.3.2. | 167 | * document, with the reason described in 7.3.3.2. |
168 | */ | 168 | */ |
169 | static int fake_disassoc_req(struct net_device *dev, | 169 | static int fake_disassoc_req(struct net_device *dev, |
170 | struct ieee802154_addr_sa *addr, u8 reason) | 170 | struct ieee802154_addr *addr, u8 reason) |
171 | { | 171 | { |
172 | return ieee802154_nl_disassoc_confirm(dev, IEEE802154_SUCCESS); | 172 | return ieee802154_nl_disassoc_confirm(dev, IEEE802154_SUCCESS); |
173 | } | 173 | } |
@@ -192,7 +192,7 @@ static int fake_disassoc_req(struct net_device *dev, | |||
192 | * document, with 7.3.8 describing coordinator realignment. | 192 | * document, with 7.3.8 describing coordinator realignment. |
193 | */ | 193 | */ |
194 | static int fake_start_req(struct net_device *dev, | 194 | static int fake_start_req(struct net_device *dev, |
195 | struct ieee802154_addr_sa *addr, u8 channel, u8 page, | 195 | struct ieee802154_addr *addr, u8 channel, u8 page, |
196 | u8 bcn_ord, u8 sf_ord, u8 pan_coord, u8 blx, | 196 | u8 bcn_ord, u8 sf_ord, u8 pan_coord, u8 blx, |
197 | u8 coord_realign) | 197 | u8 coord_realign) |
198 | { | 198 | { |