Merge "disp: msm: Use the new notifier function instead of msm_drm_notifier"

This commit is contained in:
qctecmdr
2019-07-26 17:45:18 -07:00
committed by Gerrit - the friendly Code Review server
5개의 변경된 파일42개의 추가작업 그리고 64개의 파일을 삭제

파일 보기

@@ -5540,6 +5540,16 @@ static struct mipi_dsi_host_ops dsi_host_ext_ops = {
.transfer = dsi_host_transfer,
};
struct drm_panel *dsi_display_get_drm_panel(struct dsi_display * display)
{
if (!display || !display->panel) {
pr_err("invalid param(s)\n");
return NULL;
}
return &display->panel->drm_panel;
}
int dsi_display_drm_ext_bridge_init(struct dsi_display *display,
struct drm_encoder *encoder, struct drm_connector *connector)
{