Skip to content

Commit acd7007

Browse files
author
Barnabás Czémán
committed
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 1d5fc10 commit acd7007

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)