modules: felix: Add needed dependencies

Modules should list all needed _if dependencies in their makefile otherwise
if one compiles a kernel that didn't compile those files the module won't build.

Fixes: 451bcf1b36
This commit is contained in:
Emmanuel Vadot 2021-08-06 15:20:06 +02:00
parent 86c71e97d1
commit b542c9e42b

View File

@ -29,6 +29,6 @@
.PATH: ${SRCTOP}/sys/dev/etherswitch/felix
KMOD = felix
SRCS = felix.c
SRCS = felix.c etherswitch_if.c etherswitch_if.h
.include <bsd.kmod.mk>