Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 527b863f authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Archit Taneja
Browse files

drm: bridge: dw-hdmi: Remove encoder field from struct dw_hdmi

parent 70c963ec
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -115,7 +115,6 @@ struct dw_hdmi_i2c {

struct dw_hdmi {
	struct drm_connector connector;
	struct drm_encoder *encoder;
	struct drm_bridge bridge;

	struct platform_device *audio;
@@ -1816,9 +1815,8 @@ static irqreturn_t dw_hdmi_irq(int irq, void *dev_id)
	return IRQ_HANDLED;
}

static int dw_hdmi_register(struct drm_device *drm, struct dw_hdmi *hdmi)
static int dw_hdmi_register(struct drm_encoder *encoder, struct dw_hdmi *hdmi)
{
	struct drm_encoder *encoder = hdmi->encoder;
	struct drm_bridge *bridge = &hdmi->bridge;
	int ret;

@@ -1835,7 +1833,7 @@ static int dw_hdmi_register(struct drm_device *drm, struct dw_hdmi *hdmi)
	drm_connector_helper_add(&hdmi->connector,
				 &dw_hdmi_connector_helper_funcs);

	drm_connector_init(drm, &hdmi->connector,
	drm_connector_init(encoder->dev, &hdmi->connector,
			   &dw_hdmi_connector_funcs,
			   DRM_MODE_CONNECTOR_HDMIA);

@@ -1867,7 +1865,6 @@ int dw_hdmi_bind(struct device *dev, struct drm_encoder *encoder,
	hdmi->dev = dev;
	hdmi->dev_type = plat_data->dev_type;
	hdmi->sample_rate = 48000;
	hdmi->encoder = encoder;
	hdmi->disabled = true;
	hdmi->rxsense = true;
	hdmi->phy_mask = (u8)~(HDMI_PHY_HPD | HDMI_PHY_RX_SENSE);
@@ -1980,7 +1977,7 @@ int dw_hdmi_bind(struct device *dev, struct drm_encoder *encoder,
	if (ret)
		goto err_iahb;

	ret = dw_hdmi_register(encoder->dev, hdmi);
	ret = dw_hdmi_register(encoder, hdmi);
	if (ret)
		goto err_iahb;