mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 18:00:31 -05:00
In order to have a proper linuxkpi_video kmod, move the module declaration to a new file as linuxkpi_video will also include linux_hdmi.c Differential Revision: https://reviews.freebsd.org/D44926 Reviewed by: bz, emaste, wulf Sponsored by: Beckhoff Automation GmbH & Co. KG (cherry picked from commit 7f84bb34a1d191949ec519a01c0c574f5e827c88)
14 lines
249 B
Makefile
14 lines
249 B
Makefile
.PATH: ${SRCTOP}/sys/compat/linuxkpi/common/src
|
|
|
|
KMOD= linuxkpi_hdmi
|
|
SRCS= linux_hdmi.c \
|
|
linuxkpi_hdmikmod.c
|
|
|
|
SRCS+= ${LINUXKPI_GENSRCS}
|
|
|
|
CFLAGS+= ${LINUXKPI_INCLUDES}
|
|
CFLAGS.linux_hdmi.c= -Wno-cast-qual
|
|
|
|
EXPORT_SYMS= YES
|
|
|
|
.include <bsd.kmod.mk>
|