Commit 685a39bd authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] v4l2-common: h_bp var is unused at v4l2_detect_gtf()

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7226d8eb
...@@ -837,7 +837,7 @@ bool v4l2_detect_gtf(unsigned frame_height, ...@@ -837,7 +837,7 @@ bool v4l2_detect_gtf(unsigned frame_height,
struct v4l2_dv_timings *fmt) struct v4l2_dv_timings *fmt)
{ {
int pix_clk; int pix_clk;
int v_fp, v_bp, h_fp, h_bp, hsync; int v_fp, v_bp, h_fp, hsync;
int frame_width, image_height, image_width; int frame_width, image_height, image_width;
bool default_gtf; bool default_gtf;
int h_blank; int h_blank;
...@@ -885,7 +885,6 @@ bool v4l2_detect_gtf(unsigned frame_height, ...@@ -885,7 +885,6 @@ bool v4l2_detect_gtf(unsigned frame_height,
hsync = hsync - hsync % GTF_CELL_GRAN; hsync = hsync - hsync % GTF_CELL_GRAN;
h_fp = h_blank / 2 - hsync; h_fp = h_blank / 2 - hsync;
h_bp = h_blank / 2;
fmt->bt.polarities = polarities; fmt->bt.polarities = polarities;
fmt->bt.width = image_width; fmt->bt.width = image_width;
......
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