Skip to content

Commit

Permalink
amt: fix typo in amt
Browse files Browse the repository at this point in the history
AMT_MSG_TEARDOWM is defined,
But it should be AMT_MSG_TEARDOWN.

Fixes: b9022b5 ("amt: add control plane of amt interface")
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
TaeheeYoo authored and kuba-moo committed May 26, 2022
1 parent 7e062cd commit 4934609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/net/amt.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static char *type_str[] = {
"AMT_MSG_MEMBERSHIP_QUERY",
"AMT_MSG_MEMBERSHIP_UPDATE",
"AMT_MSG_MULTICAST_DATA",
"AMT_MSG_TEARDOWM",
"AMT_MSG_TEARDOWN",
};

static char *action_str[] = {
Expand Down
2 changes: 1 addition & 1 deletion include/net/amt.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ enum amt_msg_type {
AMT_MSG_MEMBERSHIP_QUERY,
AMT_MSG_MEMBERSHIP_UPDATE,
AMT_MSG_MULTICAST_DATA,
AMT_MSG_TEARDOWM,
AMT_MSG_TEARDOWN,
__AMT_MSG_MAX,
};

Expand Down

0 comments on commit 4934609

Please sign in to comment.