Commit 56c9818d authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Tomi Valkeinen

drm/omap: Remove omap_dss_device dst field

The field is only used in a safety check during device
connection/disconnection, where the src field can be easily used
instead. Remove it and use src.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
Tested-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 19b4200d
...@@ -199,9 +199,8 @@ int omapdss_device_connect(struct dss_device *dss, ...@@ -199,9 +199,8 @@ int omapdss_device_connect(struct dss_device *dss,
} }
if (src) { if (src) {
WARN_ON(src->dst); WARN_ON(dst->src);
dst->src = src; dst->src = src;
src->dst = dst;
} }
return 0; return 0;
...@@ -219,11 +218,10 @@ void omapdss_device_disconnect(struct omap_dss_device *src, ...@@ -219,11 +218,10 @@ void omapdss_device_disconnect(struct omap_dss_device *src,
} }
if (src) { if (src) {
if (WARN_ON(dst != src->dst)) if (WARN_ON(dst->src != src))
return; return;
dst->src = NULL; dst->src = NULL;
src->dst = NULL;
} }
WARN_ON(dst->state != OMAP_DSS_DISPLAY_DISABLED); WARN_ON(dst->state != OMAP_DSS_DISPLAY_DISABLED);
......
...@@ -406,7 +406,6 @@ struct omap_dss_device { ...@@ -406,7 +406,6 @@ struct omap_dss_device {
struct dss_device *dss; struct dss_device *dss;
struct omap_dss_device *src; struct omap_dss_device *src;
struct omap_dss_device *dst;
struct omap_dss_device *next; struct omap_dss_device *next;
struct list_head list; struct list_head list;
......
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