aboutsummaryrefslogtreecommitdiff
path: root/kernel/audit.c
diff options
context:
space:
mode:
authorRichard Guy Briggs <rgb@redhat.com>2013-07-16 13:18:45 -0400
committerEric Paris <eparis@redhat.com>2014-01-17 17:14:32 -0500
commit8626877b5252c78be9e3e819e7de65740a7e6f90 (patch)
tree7b6b716b4f6237bead179ce6fe3ab6557549e1ec /kernel/audit.c
parent4f066328abec7f67518051e0eba67246ef2bfc07 (diff)
audit: fix location of __net_initdata for audit_net_ops
Fixup caught by checkpatch. Signed-off-by: Richard Guy Briggs <rgb@redhat.com> Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r--kernel/audit.c2
1 files changed, 1 insertions, 1 deletions
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,