summaryrefslogtreecommitdiffstats
path: root/include/linux/if_team.h
diff options
context:
space:
mode:
authorZhengchao Shao <shaozhengchao@huawei.com>2023-08-07 09:25:55 +0800
committerJakub Kicinski <kuba@kernel.org>2023-08-08 15:04:05 -0700
commitc3b41f4c7b7ce573f379c0053e3c86e722562659 (patch)
tree593532b13d2fba0147b558f553fab0f7f4997199 /include/linux/if_team.h
parentde3ecc4fd8bf201c5cd02dc49687fb1506cebb45 (diff)
downloadlinux-c3b41f4c7b7ce573f379c0053e3c86e722562659.tar.gz
linux-c3b41f4c7b7ce573f379c0053e3c86e722562659.tar.bz2
linux-c3b41f4c7b7ce573f379c0053e3c86e722562659.zip
team: change the getter function in the team_option structure to void
Because the getter function in the team_option structure always returns 0, so change the getter function to void and remove redundant code. Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com> Reviewed-by: Hangbin Liu <liuhangbin@gmail.com> Reviewed-by: Jiri Pirko <jiri@nvidia.com> Link: https://lore.kernel.org/r/20230807012556.3146071-5-shaozhengchao@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/linux/if_team.h')
-rw-r--r--include/linux/if_team.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/if_team.h b/include/linux/if_team.h
index fc01c3cfe86d..1b9b15a492fa 100644
--- a/include/linux/if_team.h
+++ b/include/linux/if_team.h
@@ -163,7 +163,7 @@ struct team_option {
unsigned int array_size; /* != 0 means the option is array */
enum team_option_type type;
void (*init)(struct team *team, struct team_option_inst_info *info);
- int (*getter)(struct team *team, struct team_gsetter_ctx *ctx);
+ void (*getter)(struct team *team, struct team_gsetter_ctx *ctx);
int (*setter)(struct team *team, struct team_gsetter_ctx *ctx);
};