diff options
Diffstat (limited to 'src/netlink.c')
-rw-r--r-- | src/netlink.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/netlink.c b/src/netlink.c index fa8a766..064fad9 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -481,10 +481,13 @@ static const struct genl_ops genl_ops[] = { } }; -static struct genl_family genl_family __ro_after_init = { +static struct genl_family genl_family #ifndef COMPAT_CANNOT_USE_GENL_NOPS +__ro_after_init = { .ops = genl_ops, .n_ops = ARRAY_SIZE(genl_ops), +#else += { #endif .name = WG_GENL_NAME, .version = WG_GENL_VERSION, |