if_stmac: fix compilation error (related to crc32_raw move in FreeBSD)

FreeBSD in 2019 moved crc32 function into separate gsb_crc32.h header
file and probably after libbsd sync with this change if_stmac got broken.
This commit is contained in:
Karel Gardas 2022-04-23 09:35:55 +02:00
parent d1bfa784b7
commit 508af74f79

View File

@ -40,6 +40,7 @@
#include <sys/module.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/gsb_crc32.h>
#include <net/if.h>
#include <net/ethernet.h>