mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 11:55:12 +07:00
8c6ad9cc51
The MCR20AVHM transceiver (or MCR20A) is a low power, high-performance 2.4 GHz, IEEE 802.15.4 compliant transceiver. This driver implements a subset of ieee802154_ops. It has no support for CSMA due to lack of hardware support. It has currently no support for its proprietary Dual-PAN feature. https://www.nxp.com/docs/en/reference-manual/MCR20RM.pdf Signed-off-by: Xue Liu <liuxuenetmail@gmail.com> Signed-off-by: Stefan Schmidt <stefan@osg.samsung.com>
10 lines
397 B
Makefile
10 lines
397 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_IEEE802154_FAKELB) += fakelb.o
|
|
obj-$(CONFIG_IEEE802154_AT86RF230) += at86rf230.o
|
|
obj-$(CONFIG_IEEE802154_MRF24J40) += mrf24j40.o
|
|
obj-$(CONFIG_IEEE802154_CC2520) += cc2520.o
|
|
obj-$(CONFIG_IEEE802154_ATUSB) += atusb.o
|
|
obj-$(CONFIG_IEEE802154_ADF7242) += adf7242.o
|
|
obj-$(CONFIG_IEEE802154_CA8210) += ca8210.o
|
|
obj-$(CONFIG_IEEE802154_MCR20A) += mcr20a.o
|