thunderbolt: Fix uninitialized variable in tb_tunnel_alloc_usb3()
authorGil Fine <gil.fine@linux.intel.com>
Thu, 25 Apr 2024 23:24:17 +0000 (02:24 +0300)
committerMika Westerberg <mika.westerberg@linux.intel.com>
Sat, 27 Apr 2024 05:02:01 +0000 (08:02 +0300)
commit61684c0ff94ca356ef82220173860223908f1e04
tree1a836abeddf91464b37246b21c809ee79f72c006
parenta3ad3a90e0a722d9a50c01cfb40e6cfbb975e529
thunderbolt: Fix uninitialized variable in tb_tunnel_alloc_usb3()

Currently in case of no bandwidth available for USB3 tunnel, we are left
with uninitialized variable that can lead to huge negative allocated
bandwidth.

Fix this by initializing the variable to zero. While there, fix the
kernel-doc to describe more accurately the purpose of the function
tb_tunnel_alloc_usb3().

Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/linux-usb/6289898b-cd63-4fb8-906a-1b6977321af9@moroto.mountain/
Fixes: 25d905d2b819 ("thunderbolt: Allow USB3 bandwidth to be lower than maximum supported")
Signed-off-by: Gil Fine <gil.fine@linux.intel.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
drivers/thunderbolt/tunnel.c