commit | f88725ffb069fef0ea3d47381d33c928f4c48cba | [log] [tgz] |
---|---|---|
author | Jiri Pirko <jpirko@redhat.com> | Tue Jun 19 05:54:15 2012 +0000 |
committer | David S. Miller <davem@davemloft.net> | Tue Jun 19 15:00:24 2012 -0700 |
tree | 57fa3cb327f81dae4ead1f4d1c8e977f1afd5927 | |
parent | 01048d9a293cbe9aac00fd014b9754bbc7eb136f [diff] [blame] |
team: pass NULL to __team_option_inst_add() instead of 0 Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c index da72f41..eb18ac9 100644 --- a/drivers/net/team/team.c +++ b/drivers/net/team/team.c
@@ -164,7 +164,7 @@ int err; if (!option->per_port) { - err = __team_option_inst_add(team, option, 0); + err = __team_option_inst_add(team, option, NULL); if (err) goto inst_del_option; }