From: Sven Eckelmann Date: Sun, 13 Apr 2025 08:14:42 +0000 (+0200) Subject: batman-adv: Switch to crc32 header for crc32c X-Git-Tag: v6.16-rc1~132^2~139^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a608f11d3a3b9464bd6ec63b7e3e84cccd556e06;p=thirdparty%2Flinux.git batman-adv: Switch to crc32 header for crc32c The crc32c() function was moved in commit 8df36829045a ("lib/crc32: standardize on crc32c() name for Castagnoli CRC32") from linux/crc32c.h to linux/crc32.h. The former is just an include file which redirects to the latter. Avoid the indirection by directly including the correct header file. Signed-off-by: Sven Eckelmann Signed-off-by: Simon Wunderlich --- diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index e41f816f0887b..c0bc755133558 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c index 4a3165920de19..8d0e04e770cb6 100644 --- a/net/batman-adv/translation-table.c +++ b/net/batman-adv/translation-table.c @@ -14,7 +14,7 @@ #include #include #include -#include +#include #include #include #include