aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee802154
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-12-31 13:39:09 -0500
committerMarcel Holtmann <marcel@holtmann.org>2015-01-02 19:49:24 -0500
commit79300e3a438f93c7431b4bf40fa18580ccb34be1 (patch)
treed03d6c2931bd5e0f2e676b3d281750015263a5df /net/ieee802154
parent955d7fc93ed095c74fdc439c2893a87ca1652148 (diff)
ieee802154: socket: change module name
This patch changes the module name of af_802154 to ieee802154_socket. Just for keeping the name convention according to the 6LoWPAN module ieee802154_6lowpan. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/ieee802154')
-rw-r--r--net/ieee802154/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ieee802154/Makefile b/net/ieee802154/Makefile
index 53612d1debe1..19b2bec1fd09 100644
--- a/net/ieee802154/Makefile
+++ b/net/ieee802154/Makefile
@@ -1,10 +1,10 @@
1obj-$(CONFIG_IEEE802154) += ieee802154.o 1obj-$(CONFIG_IEEE802154) += ieee802154.o
2obj-$(CONFIG_IEEE802154_SOCKET) += af_802154.o 2obj-$(CONFIG_IEEE802154_SOCKET) += ieee802154_socket.o
3obj-$(CONFIG_IEEE802154_6LOWPAN) += ieee802154_6lowpan.o 3obj-$(CONFIG_IEEE802154_6LOWPAN) += ieee802154_6lowpan.o
4 4
5ieee802154_6lowpan-y := 6lowpan_rtnl.o reassembly.o 5ieee802154_6lowpan-y := 6lowpan_rtnl.o reassembly.o
6ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o core.o \ 6ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o core.o \
7 header_ops.o sysfs.o nl802154.o 7 header_ops.o sysfs.o nl802154.o
8af_802154-y := af_ieee802154.o raw.o dgram.o 8ieee802154_socket-y := af_ieee802154.o raw.o dgram.o
9 9
10ccflags-y += -D__CHECK_ENDIAN__ 10ccflags-y += -D__CHECK_ENDIAN__