mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
2e7ed75e92
Introduce structures to describe peer devices in a PAN as well as a few related helpers. We basically care about: - Our unique parent after associating with a coordinator. - Peer devices, children, which successfully associated with us. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Acked-by: Stefan Schmidt <stefan@datenfreihafen.org> Acked-by: Alexander Aring <aahringo@redhat.com> Link: https://lore.kernel.org/linux-wpan/20230927181214.129346-3-miquel.raynal@bootlin.com
11 lines
337 B
Makefile
11 lines
337 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_IEEE802154) += ieee802154.o
|
|
obj-$(CONFIG_IEEE802154_SOCKET) += ieee802154_socket.o
|
|
obj-y += 6lowpan/
|
|
|
|
ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o core.o \
|
|
header_ops.o sysfs.o nl802154.o trace.o pan.o
|
|
ieee802154_socket-y := socket.o
|
|
|
|
CFLAGS_trace.o := -I$(src)
|