touch: Enabling Touch-to-Wake when AOD off

Enablement of Touch to Wake when contextual mode is off.

Change-Id: I94df963268daae4c50798c43fcb7c151bb2b0186
Signed-off-by: Sachin Kumar Garg <quic_sachinku@quicinc.com>
此提交包含在:
Sachin Kumar Garg
2022-09-27 10:20:24 +05:30
提交者 Gerrit - the friendly Code Review server
父節點 9beefc5e6f
當前提交 36097dc556

查看文件

@@ -12472,8 +12472,11 @@ static int drm_notifier_callback(struct notifier_block *self,
pt_debug(cd->dev, DL_INFO, "%s: Resume notified!\n", __func__);
}
}
} else if (*blank == DRM_PANEL_BLANK_LP) {
pt_debug(cd->dev, DL_INFO, "%s: LOWPOWER!\n", __func__);
} else if (*blank == DRM_PANEL_BLANK_LP || *blank == DRM_PANEL_BLANK_POWERDOWN) {
if (*blank == DRM_PANEL_BLANK_LP)
pt_debug(cd->dev, DL_INFO, "%s: LOWPOWER!\n", __func__);
else
pt_debug(cd->dev, DL_INFO, "%s: POWERDOWN!\n", __func__);
if (event == DRM_PANEL_EARLY_EVENT_BLANK) {
if (cd->fb_state != FB_OFF) {
#if defined(CONFIG_PM_SLEEP)