Skip to content

Commit

Permalink
Camera: Fix imx219 flicker issue
Browse files Browse the repository at this point in the history
Adjust correct value of v_blank

Change-Id: Ie3189ec1d2d028c7322ac972eaf774e347bbebfd
  • Loading branch information
xuanhao_zhang authored and XuanHao Zhang committed Aug 12, 2020
1 parent f6b28f0 commit cd99e30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/i2c/imx219.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static const struct imx219_reg imx219_init_tab_3280_2464_21fps[] = {
{0x012A, 0x18}, /* EXCK_FREQ[15:8] */
{0x012B, 0x00}, /* EXCK_FREQ[7:0] */
{0x0160, 0x09}, /* FRM_LENGTH_A[15:8] */
{0x0161, 0xC4}, /* FRM_LENGTH_A[7:0] */
{0x0161, 0xD7}, /* FRM_LENGTH_A[7:0] */
{0x0162, 0x0D}, /* LINE_LENGTH_A[15:8] */
{0x0163, 0x78}, /* LINE_LENGTH_A[7:0] */
{0x0260, 0x09}, /* FRM_LENGTH_B[15:8] */
Expand Down Expand Up @@ -306,7 +306,7 @@ static const struct imx219_mode supported_modes[] = {
.height = 2464,
.max_fps = 21,
.hts_def = 0x0d78 - IMX219_EXP_LINES_MARGIN,
.vts_def = 0x09c4,
.vts_def = 0x09d7,
.reg_list = imx219_init_tab_3280_2464_21fps,
.binning_h = 0,
.binning_v = 0,
Expand Down

0 comments on commit cd99e30

Please sign in to comment.