a53d34c346
IEEE 802.15.4 and Bluetooth networking stacks share 6lowpan compression code. Instead of introducing Makefile/Kconfig hacks, build this code as a separate module referenced from both ieee802154 and bluetooth modules. This fixes the following build error observed in some kernel configurations: net/built-in.o: In function `header_create': 6lowpan.c:(.text+0x166149): undefined reference to `lowpan_header_compress' net/built-in.o: In function `bt_6lowpan_recv': (.text+0x166b3c): undefined reference to `lowpan_process_data' Reported-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin@mentor.com> Signed-off-by: David S. Miller <davem@davemloft.net>
7 lines
259 B
Makefile
7 lines
259 B
Makefile
obj-$(CONFIG_IEEE802154) += ieee802154.o af_802154.o
|
|
obj-$(CONFIG_IEEE802154_6LOWPAN) += 6lowpan.o
|
|
obj-$(CONFIG_6LOWPAN_IPHC) += 6lowpan_iphc.o
|
|
|
|
ieee802154-y := netlink.o nl-mac.o nl-phy.o nl_policy.o wpan-class.o
|
|
af_802154-y := af_ieee802154.o raw.o dgram.o
|