diff options
author | Richard Guy Briggs <rgb@redhat.com> | 2013-07-16 13:18:45 -0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-01-17 17:14:32 -0500 |
commit | 8626877b5252c78be9e3e819e7de65740a7e6f90 (patch) | |
tree | 7b6b716b4f6237bead179ce6fe3ab6557549e1ec /kernel/audit.c | |
parent | 4f066328abec7f67518051e0eba67246ef2bfc07 (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.c | 2 |
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) | |||
1091 | netlink_kernel_release(sock); | 1091 | netlink_kernel_release(sock); |
1092 | } | 1092 | } |
1093 | 1093 | ||
1094 | static struct pernet_operations __net_initdata audit_net_ops = { | 1094 | static struct pernet_operations audit_net_ops __net_initdata = { |
1095 | .init = audit_net_init, | 1095 | .init = audit_net_init, |
1096 | .exit = audit_net_exit, | 1096 | .exit = audit_net_exit, |
1097 | .id = &audit_net_id, | 1097 | .id = &audit_net_id, |