Skip to content

Commit

Permalink
media: atomisp: convert comma to semicolon
Browse files Browse the repository at this point in the history
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
  • Loading branch information
Zheng Yongjun authored and Mauro Carvalho Chehab committed Jan 14, 2021
1 parent 480fad6 commit 321af22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/media/atomisp/pci/sh_css_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ sh_css_set_black_frame(struct ia_css_stream *stream,

params = stream->isp_params_configs;
height = raw_black_frame->info.res.height;
width = raw_black_frame->info.padded_width,
width = raw_black_frame->info.padded_width;

ptr = raw_black_frame->data
+ raw_black_frame->planes.raw.offset;
Expand Down Expand Up @@ -1442,8 +1442,8 @@ static int sh_css_params_default_morph_table(

IA_CSS_ENTER_PRIVATE("");

step = (ISP_VEC_NELEMS / 16) * 128,
width = binary->morph_tbl_width,
step = (ISP_VEC_NELEMS / 16) * 128;
width = binary->morph_tbl_width;
height = binary->morph_tbl_height;

tab = ia_css_morph_table_allocate(width, height);
Expand Down

0 comments on commit 321af22

Please sign in to comment.