in6_ifattach: include sys/eventhandler.h to unbreak NOVIMAGE builds
Some checks are pending
Cross-build Kernel / amd64 ubuntu-22.04 (clang-15) (push) Waiting to run
Cross-build Kernel / aarch64 ubuntu-22.04 (clang-15) (push) Waiting to run
Cross-build Kernel / amd64 ubuntu-24.04 (clang-18) (push) Waiting to run
Cross-build Kernel / aarch64 ubuntu-24.04 (clang-18) (push) Waiting to run
Cross-build Kernel / amd64 macos-latest (clang-18) (push) Waiting to run
Cross-build Kernel / aarch64 macos-latest (clang-18) (push) Waiting to run

LINT-NOVIMAGE fails to build due to a missing eventhandler.h include
which in hte VIMAGE case is likely leaked through some other header.
Add the #include to unbreak the build.

Fixes:	0d469d2371 (net: attach IPv4 and IPv6 stacks to an ...)
This commit is contained in:
Bjoern A. Zeeb 2025-12-20 22:47:40 +00:00
parent 27cb2610ef
commit 117306dc60

View file

@ -32,6 +32,7 @@
*/
#include <sys/param.h>
#include <sys/eventhandler.h>
#include <sys/systm.h>
#include <sys/counter.h>
#include <sys/malloc.h>