diff options
author | Taehee Yoo <ap420073@gmail.com> | 2022-06-02 17:01:08 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-06-07 00:27:35 +0300 |
commit | d7970039d87c926bb648982e920cb9851c19f3e1 (patch) | |
tree | 7f4f084ef37087a3bd3b431a56fdaae044b364ad /drivers/net/amt.c | |
parent | d16207f92a4a823c48b4ea953ad51f4483456768 (diff) | |
download | linux-d7970039d87c926bb648982e920cb9851c19f3e1.tar.xz |
amt: fix wrong type string definition
amt message type definition starts from 1, not 0.
But type_str[] starts from 0.
So, it prints wrong type information.
Fixes: cbc21dc1cfe9 ("amt: add data plane of amt interface")
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/amt.c')
-rw-r--r-- | drivers/net/amt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/amt.c b/drivers/net/amt.c index ef483bf51033..be2719a3ba70 100644 --- a/drivers/net/amt.c +++ b/drivers/net/amt.c @@ -51,6 +51,7 @@ static char *status_str[] = { }; static char *type_str[] = { + "", /* Type 0 is not defined */ "AMT_MSG_DISCOVERY", "AMT_MSG_ADVERTISEMENT", "AMT_MSG_REQUEST", |