diff options
author | Jiri Pirko <jpirko@redhat.com> | 2012-04-10 01:15:46 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-11 10:03:52 -0400 |
commit | cade455596504fae8e134a27189713ddf7c6d04d (patch) | |
tree | f633a0ed2038035489e0a0d76876f0df225a7074 /drivers/net/team/team_mode_activebackup.c | |
parent | 679b16073008cc536e85e2773e67234b596fb62e (diff) |
team: add missed "statics"
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/team/team_mode_activebackup.c')
-rw-r--r-- | drivers/net/team/team_mode_activebackup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/team/team_mode_activebackup.c b/drivers/net/team/team_mode_activebackup.c index a715c40e08c..fd6bd03aaa8 100644 --- a/drivers/net/team/team_mode_activebackup.c +++ b/drivers/net/team/team_mode_activebackup.c | |||
@@ -90,12 +90,12 @@ static const struct team_option ab_options[] = { | |||
90 | }, | 90 | }, |
91 | }; | 91 | }; |
92 | 92 | ||
93 | int ab_init(struct team *team) | 93 | static int ab_init(struct team *team) |
94 | { | 94 | { |
95 | return team_options_register(team, ab_options, ARRAY_SIZE(ab_options)); | 95 | return team_options_register(team, ab_options, ARRAY_SIZE(ab_options)); |
96 | } | 96 | } |
97 | 97 | ||
98 | void ab_exit(struct team *team) | 98 | static void ab_exit(struct team *team) |
99 | { | 99 | { |
100 | team_options_unregister(team, ab_options, ARRAY_SIZE(ab_options)); | 100 | team_options_unregister(team, ab_options, ARRAY_SIZE(ab_options)); |
101 | } | 101 | } |