Browse Source

MT#55283 fix kernel compilation for >= 6.13

Closes #1898

Change-Id: I585db2307f750abc18f9918451cab6c6c693965c
(cherry picked from commit f443bd8ce2)
(cherry picked from commit 320597998b)
mr11.5.1
Richard Fuchs 11 months ago
parent
commit
46d537e5bf
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      kernel-module/xt_RTPENGINE.c

+ 3
- 1
kernel-module/xt_RTPENGINE.c View File

@ -44,7 +44,9 @@
#include "rtpengine_config.h"
MODULE_LICENSE("GPL");
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,12,0)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6,13,0)
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(5,12,0)
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
#endif
MODULE_ALIAS("ipt_RTPENGINE");


Loading…
Cancel
Save