Skip to content

Commit 66c508c

Browse files
committed
panel: Use new MIPI_DSI_MODE_NO_EOT_PACKET define
This define was cahnged in [1] among some others [1] torvalds/linux@0f3b68b
1 parent 3e9ac4f commit 66c508c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def __init__(self, name: str, fdt: Fdt2, node: int) -> None:
242242
self.flags.append('MIPI_DSI_MODE_VIDEO_HSE')
243243

244244
if fdt.getprop_or_none(node, 'qcom,mdss-dsi-tx-eot-append') is None:
245-
self.flags.append('MIPI_DSI_MODE_EOT_PACKET')
245+
self.flags.append('MIPI_DSI_MODE_NO_EOT_PACKET')
246246

247247
if fdt.getprop_or_none(node, 'qcom,mdss-dsi-force-clock-lane-hs') is None \
248248
and fdt.getprop_or_none(node, 'qcom,mdss-dsi-force-clk-lane-hs') is None:

0 commit comments

Comments
 (0)