From 7e7a0edecca0e317b6a29478c24e8f7a2234382b Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 28 Feb 2018 23:48:35 +0200 Subject: [PATCH] drm/omap: dss: Rename omap_dss_device list field to output_list For coherency with the panel_list field, rename list to output_list. Signed-off-by: Laurent Pinchart Reviewed-by: Sebastian Reichel Signed-off-by: Tomi Valkeinen --- drivers/gpu/drm/omapdrm/dss/omapdss.h | 2 +- drivers/gpu/drm/omapdrm/dss/output.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/omapdrm/dss/omapdss.h b/drivers/gpu/drm/omapdrm/dss/omapdss.h index 39e2906fd5fe..abf101bb27ea 100644 --- a/drivers/gpu/drm/omapdrm/dss/omapdss.h +++ b/drivers/gpu/drm/omapdrm/dss/omapdss.h @@ -481,7 +481,7 @@ struct omap_dss_device { /* OMAP DSS output specific fields */ - struct list_head list; + struct list_head output_list; /* DISPC channel for this output */ enum omap_channel dispc_channel; diff --git a/drivers/gpu/drm/omapdrm/dss/output.c b/drivers/gpu/drm/omapdrm/dss/output.c index 96b9d4cd505f..0fcd13ea8824 100644 --- a/drivers/gpu/drm/omapdrm/dss/output.c +++ b/drivers/gpu/drm/omapdrm/dss/output.c @@ -96,14 +96,14 @@ EXPORT_SYMBOL(omapdss_output_unset_device); int omapdss_register_output(struct omap_dss_device *out) { - list_add_tail(&out->list, &output_list); + list_add_tail(&out->output_list, &output_list); return 0; } EXPORT_SYMBOL(omapdss_register_output); void omapdss_unregister_output(struct omap_dss_device *out) { - list_del(&out->list); + list_del(&out->output_list); } EXPORT_SYMBOL(omapdss_unregister_output); @@ -111,7 +111,7 @@ bool omapdss_component_is_output(struct device_node *node) { struct omap_dss_device *out; - list_for_each_entry(out, &output_list, list) { + list_for_each_entry(out, &output_list, output_list) { if (out->dev->of_node == node) return true; } @@ -124,7 +124,7 @@ struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id) { struct omap_dss_device *out; - list_for_each_entry(out, &output_list, list) { + list_for_each_entry(out, &output_list, output_list) { if (out->id == id) return out; } @@ -145,7 +145,7 @@ struct omap_dss_device *omap_dss_find_output_by_port_node(struct device_node *po reg = dss_of_port_get_port_number(port); - list_for_each_entry(out, &output_list, list) { + list_for_each_entry(out, &output_list, output_list) { if (out->dev->of_node == src_node && out->port_num == reg) { of_node_put(src_node); return omap_dss_get_device(out);