mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
78f821b648
This patch puts all related socket handling into one file. This is just a cleanup to do all socket handling stuff inside of one implementation file. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
11 lines
391 B
Makefile
11 lines
391 B
Makefile
obj-$(CONFIG_IEEE802154) += ieee802154.o
|
|
obj-$(CONFIG_IEEE802154_SOCKET) += ieee802154_socket.o
|
|
obj-$(CONFIG_IEEE802154_6LOWPAN) += ieee802154_6lowpan.o
|
|
|
|
ieee802154_6lowpan-y := 6lowpan_rtnl.o reassembly.o
|
|
ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o core.o \
|
|
header_ops.o sysfs.o nl802154.o
|
|
ieee802154_socket-y := af_ieee802154.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|