diff options
author | Alexander Aring | 2014-02-28 07:32:47 +0100 |
---|---|---|
committer | David S. Miller | 2014-02-28 17:05:21 -0500 |
commit | 01348b34485eceace5d9ca9756ba40679cf22ac6 (patch) | |
tree | 963cdd3f63ca7ba161e56d3d3513c8f28775eb54 | |
parent | 02600d0de677b70305393af770a5a46be514e5b8 (diff) |
6lowpan: move 6lowpan.c to 6lowpan_rtnl.c
We have a 6lowpan.c file and 6lowpan.ko file. To avoid confusing we
should move 6lowpan.c to 6lowpan_rtnl.c. Then we can support multiple
source files for 6lowpan module.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ieee802154/6lowpan_rtnl.c (renamed from net/ieee802154/6lowpan.c) | 0 | ||||
-rw-r--r-- | net/ieee802154/Makefile | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan_rtnl.c index 6b7d17fd5481..6b7d17fd5481 100644 --- a/net/ieee802154/6lowpan.c +++ b/net/ieee802154/6lowpan_rtnl.c diff --git a/net/ieee802154/Makefile b/net/ieee802154/Makefile index e8f05885ced6..3d08adfcd175 100644 --- a/net/ieee802154/Makefile +++ b/net/ieee802154/Makefile @@ -2,5 +2,6 @@ obj-$(CONFIG_IEEE802154) += ieee802154.o af_802154.o obj-$(CONFIG_IEEE802154_6LOWPAN) += 6lowpan.o obj-$(CONFIG_6LOWPAN_IPHC) += 6lowpan_iphc.o +6lowpan-y := 6lowpan_rtnl.o ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o wpan-class.o af_802154-y := af_ieee802154.o raw.o dgram.o |