Commit 4934609d authored by Taehee Yoo's avatar Taehee Yoo Committed by Jakub Kicinski

amt: fix typo in amt

AMT_MSG_TEARDOWM is defined,
But it should be AMT_MSG_TEARDOWN.

Fixes: b9022b53 ("amt: add control plane of amt interface")
Signed-off-by: default avatarTaehee Yoo <ap420073@gmail.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 7e062cda
...@@ -57,7 +57,7 @@ static char *type_str[] = { ...@@ -57,7 +57,7 @@ static char *type_str[] = {
"AMT_MSG_MEMBERSHIP_QUERY", "AMT_MSG_MEMBERSHIP_QUERY",
"AMT_MSG_MEMBERSHIP_UPDATE", "AMT_MSG_MEMBERSHIP_UPDATE",
"AMT_MSG_MULTICAST_DATA", "AMT_MSG_MULTICAST_DATA",
"AMT_MSG_TEARDOWM", "AMT_MSG_TEARDOWN",
}; };
static char *action_str[] = { static char *action_str[] = {
......
...@@ -15,7 +15,7 @@ enum amt_msg_type { ...@@ -15,7 +15,7 @@ enum amt_msg_type {
AMT_MSG_MEMBERSHIP_QUERY, AMT_MSG_MEMBERSHIP_QUERY,
AMT_MSG_MEMBERSHIP_UPDATE, AMT_MSG_MEMBERSHIP_UPDATE,
AMT_MSG_MULTICAST_DATA, AMT_MSG_MULTICAST_DATA,
AMT_MSG_TEARDOWM, AMT_MSG_TEARDOWN,
__AMT_MSG_MAX, __AMT_MSG_MAX,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment