Commit a3703713 authored by Madhumitha Prabakaran's avatar Madhumitha Prabakaran Committed by Greg Kroah-Hartman

Staging: media: davinci_vpfe: Fix preferred form of passing a size

Fix preferred form of passing a size of a struct to improve readability
and eradicate an opportunity for a bug when the pointer variable type is
changed but the corresponding sizeof that is passed to a memory
allocator is not.
Signed-off-by: default avatarMadhumitha Prabakaran <madhumithabiw@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ac394266
...@@ -1264,8 +1264,7 @@ static int ipipe_s_config(struct v4l2_subdev *sd, struct vpfe_ipipe_config *cfg) ...@@ -1264,8 +1264,7 @@ static int ipipe_s_config(struct v4l2_subdev *sd, struct vpfe_ipipe_config *cfg)
module_if = &ipipe_modules[i]; module_if = &ipipe_modules[i];
from = *(void **)((void *)cfg + module_if->config_offset); from = *(void **)((void *)cfg + module_if->config_offset);
params = kmalloc(sizeof(struct ipipe_module_params), params = kmalloc(sizeof(*params), GFP_KERNEL);
GFP_KERNEL);
to = (void *)params + module_if->param_offset; to = (void *)params + module_if->param_offset;
size = module_if->param_size; size = module_if->param_size;
...@@ -1306,8 +1305,7 @@ static int ipipe_g_config(struct v4l2_subdev *sd, struct vpfe_ipipe_config *cfg) ...@@ -1306,8 +1305,7 @@ static int ipipe_g_config(struct v4l2_subdev *sd, struct vpfe_ipipe_config *cfg)
module_if = &ipipe_modules[i]; module_if = &ipipe_modules[i];
to = *(void **)((void *)cfg + module_if->config_offset); to = *(void **)((void *)cfg + module_if->config_offset);
params = kmalloc(sizeof(struct ipipe_module_params), params = kmalloc(sizeof(*params), GFP_KERNEL);
GFP_KERNEL);
from = (void *)params + module_if->param_offset; from = (void *)params + module_if->param_offset;
size = module_if->param_size; size = module_if->param_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment