mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
media: atomisp: style fix for trailing statements
Fix checkpatch errors "ERROR: trailing statements should be on next line" in drivers/staging/media/atomisp/pci/sh_css_params.c. Signed-off-by: Timo Röhling <roehling@debian.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
This commit is contained in:
parent
9862d3f9de
commit
63c9b7def8
|
|
@ -872,7 +872,8 @@ ia_css_process_kernel(struct ia_css_stream *stream,
|
|||
|
||||
/* update the other buffers to the pipe specific copies */
|
||||
for (stage = pipeline->stages; stage; stage = stage->next) {
|
||||
if (!stage || !stage->binary) continue;
|
||||
if (!stage || !stage->binary)
|
||||
continue;
|
||||
process(pipeline->pipe_id, stage, params);
|
||||
}
|
||||
}
|
||||
|
|
@ -3039,7 +3040,8 @@ process_kernel_parameters(unsigned int pipe_id,
|
|||
/* Call parameter process functions for all kernels */
|
||||
/* Skip SC, since that is called on a temp sc table */
|
||||
for (param_id = 0; param_id < IA_CSS_NUM_PARAMETER_IDS; param_id++) {
|
||||
if (param_id == IA_CSS_SC_ID) continue;
|
||||
if (param_id == IA_CSS_SC_ID)
|
||||
continue;
|
||||
if (params->config_changed[param_id])
|
||||
ia_css_kernel_process_param[param_id](pipe_id, stage, params);
|
||||
}
|
||||
|
|
@ -3594,7 +3596,8 @@ sh_css_params_write_to_ddr_internal(
|
|||
IA_CSS_PARAM_CLASS_PARAM, mem);
|
||||
size_t size = isp_data->size;
|
||||
|
||||
if (!size) continue;
|
||||
if (!size)
|
||||
continue;
|
||||
buff_realloced = reallocate_buffer(&ddr_map->isp_mem_param[stage_num][mem],
|
||||
&ddr_map_size->isp_mem_param[stage_num][mem],
|
||||
size,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user