We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d0a50 commit d064e95Copy full SHA for d064e95
lk.py
@@ -201,8 +201,8 @@ def generate_lk_driver(p: Panel) -> None:
201
panel->paneltiminginfo = &{p.id}_timing_info;
202
panel->panelresetseq = {f'&{p.id}_reset_seq' if p.reset_seq else 'NULL'};
203
panel->backlightinfo = {f'&{p.id}_backlight' if p.backlight else 'NULL'};
204
- pinfo->mipi.panel_cmds = {p.id}_on_command;
205
- pinfo->mipi.num_of_panel_cmds = ARRAY_SIZE({p.id}_on_command);
+ pinfo->mipi.panel_on_cmds = {p.id}_on_command;
+ pinfo->mipi.num_of_panel_on_cmds = ARRAY_SIZE({p.id}_on_command);
206
memcpy(phy_db->timing, {p.id}_timings, TIMING_SIZE);
207
phy_db->regulator_mode = {'DSI_PHY_REGULATOR_LDO_MODE' if p.ldo_mode else 'DSI_PHY_REGULATOR_DCDC_MODE'};
208
}}
0 commit comments