Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5c98e17

Browse files
author
Barnabás Czémán
committedJan 27, 2025·
lk2nd: device: panel: remove failure on status is missing
Remove failure when ts-compatible is in use and status property is missing from touchscreen node. Make a warning instead of fail. Signed-off-by: Barnabás Czémán <[email protected]>
1 parent 9f4eb6e commit 5c98e17

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
 

‎lk2nd/device/panel.c

+8-3
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,14 @@ static int lk2nd_panel_dt_update(void *dtb, const char *cmdline,
9797

9898
ret = fdt_nop_property(dtb, node, "status");
9999
if (ret < 0) {
100-
dprintf(CRITICAL, "Failed to enable %s touchscreen: %d\n",
101-
panel->ts_compatible, ret);
102-
return ret;
100+
dprintf(CRITICAL,
101+
"WARNING!!!!\n\
102+
Failed to enable %s touchscreen: %d\n\
103+
Please check your device tree.\n\
104+
Maybe a status property is missing from touchscreen nodes.\n",
105+
panel->ts_compatible,
106+
ret);
107+
return 0;
103108
}
104109
}
105110

0 commit comments

Comments
 (0)
Please sign in to comment.