mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
No reason that they should live directly under iicbus
Sponsored by: Beckhoff Automation GmbH & Co. KG
Differential Revision: https://reviews.freebsd.org/D41911
(cherry picked from commit 06589d6e02)
16 lines
207 B
Makefile
16 lines
207 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/dev/iicbus/adc
|
|
KMOD= pcf8591
|
|
SRCS= pcf8591.c
|
|
|
|
SRCS+= \
|
|
bus_if.h \
|
|
device_if.h \
|
|
iicbus_if.h \
|
|
opt_platform.h
|
|
|
|
.if !empty(OPT_FDT)
|
|
SRCS+= ofw_bus_if.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|