]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
cdc_ncm: Fix the build warning
authorAlexander Bersenev <bay@hackerdom.ru>
Sat, 14 Mar 2020 05:33:24 +0000 (10:33 +0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 5 Jun 2023 06:17:32 +0000 (08:17 +0200)
[ Upstream commit 5d0ab06b63fc9c727a7bb72c81321c0114be540b ]

The ndp32->wLength is two bytes long, so replace cpu_to_le32 with cpu_to_le16.

Fixes: 0fa81b304a79 ("cdc_ncm: Implement the 32-bit version of NCM Transfer Block")
Signed-off-by: Alexander Bersenev <bay@hackerdom.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/usb/cdc_ncm.c

index 5fb4f74c26efdc37966ae398e49cc1bbaf4b2b2f..4824385fe2c79cc0ea5d4211dbca953799f5b679 100644 (file)
@@ -1177,7 +1177,7 @@ static struct usb_cdc_ncm_ndp32 *cdc_ncm_ndp32(struct cdc_ncm_ctx *ctx, struct s
                ndp32 = ctx->delayed_ndp32;
 
        ndp32->dwSignature = sign;
-       ndp32->wLength = cpu_to_le32(sizeof(struct usb_cdc_ncm_ndp32) + sizeof(struct usb_cdc_ncm_dpe32));
+       ndp32->wLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_ndp32) + sizeof(struct usb_cdc_ncm_dpe32));
        return ndp32;
 }