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

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

The field isn't needed, remove it.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: default avatarJose Abreu <joabreu@synopsys.com>
Signed-off-by: default avatarArchit Taneja <architt@codeaurora.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20170117082910.27023-6-laurent.pinchart+renesas@ideasonboard.com
parent 70c963ec
...@@ -115,7 +115,6 @@ struct dw_hdmi_i2c { ...@@ -115,7 +115,6 @@ struct dw_hdmi_i2c {
struct dw_hdmi { struct dw_hdmi {
struct drm_connector connector; struct drm_connector connector;
struct drm_encoder *encoder;
struct drm_bridge bridge; struct drm_bridge bridge;
struct platform_device *audio; struct platform_device *audio;
...@@ -1816,9 +1815,8 @@ static irqreturn_t dw_hdmi_irq(int irq, void *dev_id) ...@@ -1816,9 +1815,8 @@ static irqreturn_t dw_hdmi_irq(int irq, void *dev_id)
return IRQ_HANDLED; 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; struct drm_bridge *bridge = &hdmi->bridge;
int ret; int ret;
...@@ -1835,7 +1833,7 @@ static int dw_hdmi_register(struct drm_device *drm, struct dw_hdmi *hdmi) ...@@ -1835,7 +1833,7 @@ static int dw_hdmi_register(struct drm_device *drm, struct dw_hdmi *hdmi)
drm_connector_helper_add(&hdmi->connector, drm_connector_helper_add(&hdmi->connector,
&dw_hdmi_connector_helper_funcs); &dw_hdmi_connector_helper_funcs);
drm_connector_init(drm, &hdmi->connector, drm_connector_init(encoder->dev, &hdmi->connector,
&dw_hdmi_connector_funcs, &dw_hdmi_connector_funcs,
DRM_MODE_CONNECTOR_HDMIA); DRM_MODE_CONNECTOR_HDMIA);
...@@ -1867,7 +1865,6 @@ int dw_hdmi_bind(struct device *dev, struct drm_encoder *encoder, ...@@ -1867,7 +1865,6 @@ int dw_hdmi_bind(struct device *dev, struct drm_encoder *encoder,
hdmi->dev = dev; hdmi->dev = dev;
hdmi->dev_type = plat_data->dev_type; hdmi->dev_type = plat_data->dev_type;
hdmi->sample_rate = 48000; hdmi->sample_rate = 48000;
hdmi->encoder = encoder;
hdmi->disabled = true; hdmi->disabled = true;
hdmi->rxsense = true; hdmi->rxsense = true;
hdmi->phy_mask = (u8)~(HDMI_PHY_HPD | HDMI_PHY_RX_SENSE); 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, ...@@ -1980,7 +1977,7 @@ int dw_hdmi_bind(struct device *dev, struct drm_encoder *encoder,
if (ret) if (ret)
goto err_iahb; goto err_iahb;
ret = dw_hdmi_register(encoder->dev, hdmi); ret = dw_hdmi_register(encoder, hdmi);
if (ret) if (ret)
goto err_iahb; goto err_iahb;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment