mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
2bc4d4f8c8
st21nfcb does support another phy than i2c: spi. st21nfcc does not support spi as the spi ios are used by the AMS RF booster. st21nfcb is not following NCI NFC Forum recommendations for spi but rely on ST prioritary protocol ndlc as for i2c. Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
13 lines
271 B
Makefile
13 lines
271 B
Makefile
#
|
|
# Makefile for ST21NFCB NCI based NFC driver
|
|
#
|
|
|
|
st-nci-objs = ndlc.o core.o st-nci_se.o
|
|
obj-$(CONFIG_NFC_ST_NCI) += st-nci.o
|
|
|
|
st-nci_i2c-objs = i2c.o
|
|
obj-$(CONFIG_NFC_ST_NCI_I2C) += st-nci_i2c.o
|
|
|
|
st-nci_spi-objs = spi.o
|
|
obj-$(CONFIG_NFC_ST_NCI_SPI) += st-nci_spi.o
|