]> www.infradead.org Git - users/dwmw2/linux.git/commit
drm/tegra: hub: Use fn parameter directly to fix Coccinelle warning
authorThorsten Blum <thorsten.blum@toblux.com>
Wed, 10 Jul 2024 21:00:35 +0000 (23:00 +0200)
committerThierry Reding <treding@nvidia.com>
Wed, 28 Aug 2024 15:28:48 +0000 (17:28 +0200)
commitb290af0500f09577ad40b9f716d551fd65ceff25
treecf2007dea844956f22a6bd425e049e89da3dee42
parentf790b5c09665cab0d51dfcc84832d79d2b1e6c0e
drm/tegra: hub: Use fn parameter directly to fix Coccinelle warning

The function parameter out can be used directly instead of assigning it
to a temporary u64 variable first.

Remove the local variable tmp2 and use the parameter out directly as the
divisor in do_div() to remove the following Coccinelle/coccicheck
warning reported by do_div.cocci:

  WARNING: do_div() does a 64-by-32 division, please consider using div64_u64 instead

Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240710210034.796032-2-thorsten.blum@toblux.com
drivers/gpu/drm/tegra/hub.c