mirror of
https://github.com/torvalds/linux.git
synced 2026-06-03 12:03:54 +02:00
drm/gud: fix sizeof use
drivers/gpu/drm/gud/gud_connector.c:710:37-43: ERROR: application of sizeof to pointer
sizeof when applied to a pointer typed expression gives the size of
the pointer
Generated by: scripts/coccinelle/misc/noderef.cocci
Fixes: 40e1a70b4a ("drm: Add GUD USB Display driver")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: kernel test robot <lkp@intel.com>
[fix subject]
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210322174434.58849-1-noralf@tronnes.org
This commit is contained in:
parent
458025f6c1
commit
b91fbdc1df
|
|
@ -707,7 +707,7 @@ int gud_get_connectors(struct gud_device *gdrm)
|
|||
return -ENOMEM;
|
||||
|
||||
ret = gud_usb_get(gdrm, GUD_REQ_GET_CONNECTORS, 0,
|
||||
descs, GUD_CONNECTORS_MAX_NUM * sizeof(descs));
|
||||
descs, GUD_CONNECTORS_MAX_NUM * sizeof(*descs));
|
||||
if (ret < 0)
|
||||
goto free;
|
||||
if (!ret || ret % sizeof(*descs)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user