dsi.c (9d30a4bcf43c255498a537169c9bf279e6ec55de) dsi.c (eb9d6c7ebe44df4bf077e71de809bb7b216da38c)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
4 */
5
6#include "dsi.h"
7
8struct drm_encoder *msm_dsi_get_encoder(struct msm_dsi *msm_dsi)

--- 252 unchanged lines hidden (view full) ---

261 if (msm_dsi->connector && !msm_dsi->external_bridge)
262 msm_dsi->connector->funcs->destroy(msm_dsi->connector);
263
264 msm_dsi->connector = NULL;
265
266 return ret;
267}
268
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
4 */
5
6#include "dsi.h"
7
8struct drm_encoder *msm_dsi_get_encoder(struct msm_dsi *msm_dsi)

--- 252 unchanged lines hidden (view full) ---

261 if (msm_dsi->connector && !msm_dsi->external_bridge)
262 msm_dsi->connector->funcs->destroy(msm_dsi->connector);
263
264 msm_dsi->connector = NULL;
265
266 return ret;
267}
268
269void msm_dsi_snapshot(struct msm_dsi *msm_dsi)
269void msm_dsi_snapshot(struct msm_disp_state *disp_state, struct msm_dsi *msm_dsi)
270{
270{
271 msm_dsi_host_snapshot(msm_dsi->host);
271 msm_dsi_host_snapshot(disp_state, msm_dsi->host);
272}
273
272}
273