From: Richard Guy Briggs Date: Tue, 16 Jul 2013 17:18:45 +0000 (-0400) Subject: audit: fix location of __net_initdata for audit_net_ops X-Git-Tag: v3.14-rc1~118^2~1 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=8626877b5252c78be9e3e819e7de65740a7e6f90;p=linux.git audit: fix location of __net_initdata for audit_net_ops Fixup caught by checkpatch. Signed-off-by: Richard Guy Briggs Signed-off-by: Eric Paris --- diff --git a/kernel/audit.c b/kernel/audit.c index 5dd3dfadab68..34c5a2310fbf 100644 --- a/kernel/audit.c +++ b/kernel/audit.c @@ -1091,7 +1091,7 @@ static void __net_exit audit_net_exit(struct net *net) netlink_kernel_release(sock); } -static struct pernet_operations __net_initdata audit_net_ops = { +static struct pernet_operations audit_net_ops __net_initdata = { .init = audit_net_init, .exit = audit_net_exit, .id = &audit_net_id,