This function is never used by any driver. There exist also no comment for this. In my opinion it was a try to implement hardware address filter but we have already such driver ops for this functionallity. Signed-off-by: Alexander Aring <alex.aring@xxxxxxxxx> --- include/net/mac802154.h | 1 - net/mac802154/iface.c | 10 ---------- 2 files changed, 11 deletions(-) diff --git a/include/net/mac802154.h b/include/net/mac802154.h index 9e9d8fa..4666b98 100644 --- a/include/net/mac802154.h +++ b/include/net/mac802154.h @@ -173,7 +173,6 @@ struct ieee802154_ops { int (*set_hw_addr_filt)(struct ieee802154_hw *hw, struct ieee802154_hw_addr_filt *filt, unsigned long changed); - int (*ieee_addr)(struct ieee802154_hw *hw, __le64 addr); int (*set_txpower)(struct ieee802154_hw *hw, int db); int (*set_lbt)(struct ieee802154_hw *hw, bool on); int (*set_cca_mode)(struct ieee802154_hw *hw, u8 mode); diff --git a/net/mac802154/iface.c b/net/mac802154/iface.c index c1e5096..4655be5 100644 --- a/net/mac802154/iface.c +++ b/net/mac802154/iface.c @@ -51,16 +51,6 @@ static int mac802154_slave_open(struct net_device *dev) sdata->running = true; mutex_unlock(&sdata->local->iflist_mtx); - if (local->ops->ieee_addr) { - __le64 addr = ieee802154_devaddr_from_raw(dev->dev_addr); - - res = local->ops->ieee_addr(&local->hw, addr); - WARN_ON(res); - if (res) - goto err; - mac802154_dev_set_ieee_addr(dev); - } - local->open_count++; netif_start_queue(dev); -- 2.0.3 -- To unsubscribe from this list: send the line "unsubscribe linux-wpan" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html