Skip to content

Commit

Permalink
6lowpan: move 6lowpan header to include/net
Browse files Browse the repository at this point in the history
This header is used by bluetooth and ieee802154 branch. This patch
move this header to the include/net directory to avoid a use of a
relative path in include.

Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Alexander Aring authored and David S. Miller committed Mar 6, 2014
1 parent 91c6922 commit cefc8c8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion net/bluetooth/6lowpan.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include "6lowpan.h"

#include "../ieee802154/6lowpan.h" /* for the compression support */
#include <net/6lowpan.h> /* for the compression support */

#define IFACE_NAME_TEMPLATE "bt%d"
#define EUI64_ADDR_LEN 8
Expand Down
3 changes: 1 addition & 2 deletions net/ieee802154/6lowpan_iphc.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@
#include <linux/if_arp.h>
#include <linux/module.h>
#include <linux/netdevice.h>
#include <net/6lowpan.h>
#include <net/ipv6.h>
#include <net/af_ieee802154.h>

#include "6lowpan.h"

/*
* Uncompress address function for source and
* destination address(non-multicast).
Expand Down
2 changes: 1 addition & 1 deletion net/ieee802154/6lowpan_rtnl.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
#include <net/af_ieee802154.h>
#include <net/ieee802154.h>
#include <net/ieee802154_netdev.h>
#include <net/6lowpan.h>
#include <net/ipv6.h>

#include "reassembly.h"
#include "6lowpan.h"

static LIST_HEAD(lowpan_devices);

Expand Down
2 changes: 1 addition & 1 deletion net/ieee802154/reassembly.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
#include <linux/export.h>

#include <net/ieee802154_netdev.h>
#include <net/6lowpan.h>
#include <net/ipv6.h>
#include <net/inet_frag.h>

#include "6lowpan.h"
#include "reassembly.h"

static struct inet_frags lowpan_frags;
Expand Down

0 comments on commit cefc8c8

Please sign in to comment.