From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Aring Subject: [PATCH net-next v4 5/8] 6lowpan: move 6lowpan.c to 6lowpan_rtnl.c Date: Wed, 26 Feb 2014 17:05:09 +0100 Message-ID: <1393430712-11298-6-git-send-email-alex.aring@gmail.com> References: <1393430712-11298-1-git-send-email-alex.aring@gmail.com> Cc: dbaryshkov@gmail.com, davem@davemloft.net, linux-zigbee-devel@lists.sourceforge.net, netdev@vger.kernel.org, martin.townsend@xsilon.com, Alexander Aring To: alex.bluesman.smirnov@gmail.com Return-path: Received: from mail-ea0-f176.google.com ([209.85.215.176]:50092 "EHLO mail-ea0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752287AbaBZQFg (ORCPT ); Wed, 26 Feb 2014 11:05:36 -0500 Received: by mail-ea0-f176.google.com with SMTP id o10so509285eaj.35 for ; Wed, 26 Feb 2014 08:05:35 -0800 (PST) In-Reply-To: <1393430712-11298-1-git-send-email-alex.aring@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: 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 --- net/ieee802154/{6lowpan.c => 6lowpan_rtnl.c} | 0 net/ieee802154/Makefile | 1 + 2 files changed, 1 insertion(+) rename net/ieee802154/{6lowpan.c => 6lowpan_rtnl.c} (100%) diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan_rtnl.c similarity index 100% rename from net/ieee802154/6lowpan.c rename to net/ieee802154/6lowpan_rtnl.c diff --git a/net/ieee802154/Makefile b/net/ieee802154/Makefile index e8f0588..3d08adf 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 -- 1.9.0