[PATCH] media: platform: vxd: Kconfig: fix noderef.cocci warnings

From: Julia Lawall
Date: Sat Nov 20 2021 - 05:06:07 EST


From: kernel test robot <lkp@xxxxxxxxx>

sizeof when applied to a pointer typed expression gives the size of
the pointer

Generated by: scripts/coccinelle/misc/noderef.cocci

CC: Sidraya <sidraya.bj@xxxxxxxxxxxxxxxxxxx>
Reported-by: kernel test robot <lkp@xxxxxxxxx>
Signed-off-by: kernel test robot <lkp@xxxxxxxxx>
Signed-off-by: Julia Lawall <julia.lawall@xxxxxxxx>
---

tree: git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git ti-rt-linux-5.10.y
head: 0c67d996db8f3c9149598bc98657ae28fee22208
commit: 97dfdd999ba7266785579c99c40a3c65e63e864a [10173/10206] media: platform: vxd: Kconfig: Add Video decoder Kconfig and Makefile
:::::: branch date: 2 days ago
:::::: commit date: 9 days ago

work_queue.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- a/drivers/media/platform/vxe-vxd/common/work_queue.c
+++ b/drivers/media/platform/vxe-vxd/common/work_queue.c
@@ -39,7 +39,7 @@ void init_work(void **work_args, void *w
//create a link
struct node *link = kmalloc(sizeof(*link), GFP_KERNEL);

- *work = kzalloc(sizeof(*work), GFP_KERNEL);
+ *work = kzalloc(sizeof(**work), GFP_KERNEL);
if (!(*work)) {
pr_err("Memory allocation failed for work_queue\n");
return;
@@ -62,7 +62,7 @@ void init_delayed_work(void **work_args,
//create a link
struct node *link = kmalloc(sizeof(*link), GFP_KERNEL);

- *work = kzalloc(sizeof(*work), GFP_KERNEL);
+ *work = kzalloc(sizeof(**work), GFP_KERNEL);
if (!(*work)) {
pr_err("Memory allocation failed for delayed_work_queue\n");
return;