Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f1556bc authored by Alexander Aring's avatar Alexander Aring Committed by Marcel Holtmann
Browse files

mac802154: move mac802154.h to ieee802154_i.h



This patch moves the mac802154.h internal header to ieee802154_i.h like
the wireless stack ieee80211_i.h file. This avoids confusing with the
not internal header include/net/mac802154.h header. Additional we get
the same naming conversion like mac80211 for this file.

Signed-off-by: default avatarAlexander Aring <alex.aring@gmail.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 62eb01f5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@
 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
 */
#ifndef MAC802154_H
#define MAC802154_H
#ifndef __IEEE802154_I_H
#define __IEEE802154_I_H

#include <linux/mutex.h>
#include <net/mac802154.h>
@@ -165,4 +165,4 @@ void mac802154_get_table(struct net_device *dev,
			 struct ieee802154_llsec_table **t);
void mac802154_unlock_table(struct net_device *dev);

#endif /* MAC802154_H */
#endif /* __IEEE802154_I_H */
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
#include <net/ieee802154.h>
#include <crypto/algapi.h>

#include "mac802154.h"
#include "ieee802154_i.h"
#include "llsec.h"

static void llsec_key_put(struct mac802154_llsec_key *key);
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
#include <net/mac802154.h>
#include <net/nl802154.h>

#include "mac802154.h"
#include "ieee802154_i.h"

static int mac802154_mlme_start_req(struct net_device *dev,
				    struct ieee802154_addr *addr,
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
#include <net/route.h>
#include <net/wpan-phy.h>

#include "mac802154.h"
#include "ieee802154_i.h"

int mac802154_slave_open(struct net_device *dev)
{
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
#include <net/ieee802154_netdev.h>
#include <net/wpan-phy.h>

#include "mac802154.h"
#include "ieee802154_i.h"

struct phy_chan_notify_work {
	struct work_struct work;
Loading