From: Alexander Aring Date: Sat, 25 Oct 2014 07:40:59 +0000 (+0200) Subject: mac802154: move ieee802154_dev.c to main.c X-Git-Tag: v3.19-rc1~118^2~234^2~3^2~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62eb01f5c2d735e8aeab6bc95e5832cb59397527;p=thirdparty%2Fkernel%2Flinux.git mac802154: move ieee802154_dev.c to main.c 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 Signed-off-by: Marcel Holtmann --- diff --git a/net/mac802154/Makefile b/net/mac802154/Makefile index 9723d6f3f3e5b..1ecbc47d42768 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