Skip to content

Commit

Permalink
mac802154: move mac802154.h to ieee802154_i.h
Browse files Browse the repository at this point in the history
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: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
  • Loading branch information
alexaring authored and holtmann committed Oct 25, 2014
1 parent 62eb01f commit 0f1556b
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions net/mac802154/mac802154.h → net/mac802154/ieee802154_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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 */
2 changes: 1 addition & 1 deletion net/mac802154/llsec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion net/mac802154/mac_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion net/mac802154/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion net/mac802154/mib.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion net/mac802154/monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <net/wpan-phy.h>
#include <linux/nl802154.h>

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

static netdev_tx_t mac802154_monitor_xmit(struct sk_buff *skb,
struct net_device *dev)
Expand Down
2 changes: 1 addition & 1 deletion net/mac802154/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <net/mac802154.h>
#include <net/ieee802154_netdev.h>

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

/* The IEEE 802.15.4 standard defines 4 MAC packet types:
* - beacon frame
Expand Down
2 changes: 1 addition & 1 deletion net/mac802154/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <net/mac802154.h>
#include <net/wpan-phy.h>

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

/* IEEE 802.15.4 transceivers can sleep during the xmit session, so process
* packets through the workqueue.
Expand Down
2 changes: 1 addition & 1 deletion net/mac802154/wpan.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <net/ieee802154.h>
#include <net/wpan-phy.h>

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

static int mac802154_wpan_update_llsec(struct net_device *dev)
{
Expand Down

0 comments on commit 0f1556b

Please sign in to comment.