Skip to content

Commit

Permalink
adv7604: use correct drive strength defines
Browse files Browse the repository at this point in the history
The prefix is ADV7604_, not ADV76XX.

Fixes: f31b62e ("adv7604: add hdmi driver strength adjustment")
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
  • Loading branch information
Hans Verkuil authored and Ben Hutchings committed Mar 3, 2018
1 parent f9b33d1 commit 98dc7e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/media/i2c/adv7604.c
Original file line number Diff line number Diff line change
Expand Up @@ -2735,9 +2735,9 @@ static int adv7604_parse_dt(struct adv7604_state *state)
state->pdata.alt_data_sat = 1;
state->pdata.op_format_mode_sel = ADV7604_OP_FORMAT_MODE0;
state->pdata.bus_order = ADV7604_BUS_ORDER_RGB;
state->pdata.dr_str_data = ADV76XX_DR_STR_MEDIUM_HIGH;
state->pdata.dr_str_clk = ADV76XX_DR_STR_MEDIUM_HIGH;
state->pdata.dr_str_sync = ADV76XX_DR_STR_MEDIUM_HIGH;
state->pdata.dr_str_data = ADV7604_DR_STR_MEDIUM_HIGH;
state->pdata.dr_str_clk = ADV7604_DR_STR_MEDIUM_HIGH;
state->pdata.dr_str_sync = ADV7604_DR_STR_MEDIUM_HIGH;

return 0;
}
Expand Down

0 comments on commit 98dc7e9

Please sign in to comment.