diff options
author | Taehee Yoo <ap420073@gmail.com> | 2022-05-23 19:17:06 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-05-26 07:36:16 +0300 |
commit | 4934609dda03ec90ca5052deecbe455b09a44e21 (patch) | |
tree | b61a108204f1c9bac68aebc224b3ae5f88ebd4d7 /include/net | |
parent | 7e062cda7d90543ac8c7700fc7c5527d0c0f22ad (diff) | |
download | linux-4934609dda03ec90ca5052deecbe455b09a44e21.tar.xz |
amt: fix typo in amt
AMT_MSG_TEARDOWM is defined,
But it should be AMT_MSG_TEARDOWN.
Fixes: b9022b53adad ("amt: add control plane of amt interface")
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/amt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/amt.h b/include/net/amt.h index 7a4db8b903ee..0e40c3d64fcf 100644 --- a/include/net/amt.h +++ b/include/net/amt.h @@ -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, }; |