From b542c9e42ba404b12facf2a51b4c2504bb14eab9 Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Fri, 6 Aug 2021 15:20:06 +0200 Subject: [PATCH] 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: 451bcf1b3601 --- sys/modules/felix/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/felix/Makefile b/sys/modules/felix/Makefile index cfe36a58c3d..47747ffaa11 100644 --- a/sys/modules/felix/Makefile +++ b/sys/modules/felix/Makefile @@ -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