From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-la0-f49.google.com ([209.85.215.49]:41187 "EHLO mail-la0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751321AbaJYSW1 (ORCPT ); Sat, 25 Oct 2014 14:22:27 -0400 Received: by mail-la0-f49.google.com with SMTP id gf13so2916957lab.36 for ; Sat, 25 Oct 2014 11:22:25 -0700 (PDT) From: Alexander Aring Subject: [PATCH bluetooth-next 1/7] mac802154: move ieee802154_dev.c to main.c Date: Sat, 25 Oct 2014 09:24:59 +0200 Message-Id: <1414221905-19422-2-git-send-email-alex.aring@gmail.com> In-Reply-To: <1414221905-19422-1-git-send-email-alex.aring@gmail.com> References: <1414221905-19422-1-git-send-email-alex.aring@gmail.com> Sender: linux-wpan-owner@vger.kernel.org List-ID: To: linux-wpan@vger.kernel.org Cc: kernel@pengutronix.de, Alexander Aring The ieee802154_dev functionality contains various function for allocation and registration of an ieee802154_dev. This is equal to the net/mac80211/main.c file. This patch rename the ieee802154_dev.c to main.c to have the same behaviour. Signed-off-by: Alexander Aring --- net/mac802154/Makefile | 2 +- net/mac802154/{ieee802154_dev.c => main.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename net/mac802154/{ieee802154_dev.c => main.c} (100%) diff --git a/net/mac802154/Makefile b/net/mac802154/Makefile index 9723d6f..1ecbc47 100644 --- a/net/mac802154/Makefile +++ b/net/mac802154/Makefile @@ -1,5 +1,5 @@ obj-$(CONFIG_MAC802154) += mac802154.o -mac802154-objs := ieee802154_dev.o rx.o tx.o mac_cmd.o mib.o \ +mac802154-objs := main.o rx.o tx.o mac_cmd.o mib.o \ monitor.o wpan.o llsec.o ccflags-y += -D__CHECK_ENDIAN__ diff --git a/net/mac802154/ieee802154_dev.c b/net/mac802154/main.c similarity index 100% rename from net/mac802154/ieee802154_dev.c rename to net/mac802154/main.c -- 2.1.2