freebsd-dev/sys/modules/i2c/Makefile
Jakub Kołodziej b8a083ea32 gpio: Merge TCA6416 & TCA6408 drivers into TCA64XX
This merges TCA6416, TCA6408 drivers and adds PCA9555 support.
They handle 8 pin and 16 pin ICs with basic INPUT/OUTPUT functionality.
The register map is fairly similar so there is no point in having two
separate drivers.

Reviewed by:	kd
Obtained from:	Semihalf
Differential Revision: https://reviews.freebsd.org/D36559
2022-09-19 09:18:08 +02:00

43 lines
511 B
Makefile

# $FreeBSD$
SUBDIR = \
ads111x \
controllers \
cyapa \
ds1307 \
ds13rtc \
ds1672 \
ds3231 \
htu21 \
icee \
if_ic \
iic \
iicbb \
iicbus \
iicsmb \
isl \
isl12xx \
jedec_dimm \
max44009 \
mux \
nxprtc \
pcf8574 \
pcf8591 \
rtc8583 \
s35390a \
smb \
smbus \
.if !empty(OPT_FDT)
SUBDIR += rx8803 \
tca64xx \
tmp461
.endif
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
${MACHINE_CPUARCH} == "i386"
SUBDIR += iichid
.endif
.include <bsd.subdir.mk>