diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-02-18 12:06:01 +0100 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-04-03 14:19:01 +0200 |
commit | 7286a08fb5607dbcf1a47639609d53d76b60e957 (patch) | |
tree | 87a0dd24c1e68519c0c71d0407ac3b28b2ee85c6 /drivers/video/omap2/dss/hdmi.c | |
parent | OMAPDSS: HDMI: init output earlier (diff) | |
download | linux-7286a08fb5607dbcf1a47639609d53d76b60e957.tar.xz linux-7286a08fb5607dbcf1a47639609d53d76b60e957.zip |
OMAPDSS: add output->name
Add name field to omapdss's outputs so that in the following patches
panels refer to the output by their name. The name also helps debugging.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/hdmi.c')
-rw-r--r-- | drivers/video/omap2/dss/hdmi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/hdmi.c b/drivers/video/omap2/dss/hdmi.c index 04edf325429b..9cbca03eff43 100644 --- a/drivers/video/omap2/dss/hdmi.c +++ b/drivers/video/omap2/dss/hdmi.c @@ -1046,6 +1046,7 @@ static void __init hdmi_init_output(struct platform_device *pdev) out->pdev = pdev; out->id = OMAP_DSS_OUTPUT_HDMI; out->type = OMAP_DISPLAY_TYPE_HDMI; + out->name = "hdmi.0"; dss_register_output(out); } |