usb: host: ehci-q: make qtd_fill() return *unsigned int*
authorSergey Shtylyov <s.shtylyov@omp.ru>
Thu, 17 Feb 2022 17:30:13 +0000 (20:30 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 24 Feb 2022 10:19:18 +0000 (11:19 +0100)
commitc6c986b657e55910746ea0f41e1aee0696833c7a
tree85393a3de8d96224cb0ec0fbf2c9e972858c2aea
parenta5d847b0afd317df1ed0e3b72fbef72ce4824532
usb: host: ehci-q: make qtd_fill() return *unsigned int*

At the end of qtd_fill(), we assign the 'int count' variable to the 'size_t
length' field of 'struct ehci_qtd' -- which implies a problematic type cast.
Let's make that variable and the function's result *unsigned int* instead...

Found by Linux Verification Center (linuxtesting.org) with the SVACE static
analysis tool.

Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Link: https://lore.kernel.org/r/8c64fdeb-5857-8cb3-cfd8-0c248a14b909@omp.ru
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/ehci-q.c