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/dpi.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/dpi.c')
-rw-r--r-- | drivers/video/omap2/dss/dpi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dpi.c b/drivers/video/omap2/dss/dpi.c index cb6b280124f1..e393b6ab60db 100644 --- a/drivers/video/omap2/dss/dpi.c +++ b/drivers/video/omap2/dss/dpi.c @@ -512,6 +512,7 @@ static void __init dpi_init_output(struct platform_device *pdev) out->pdev = pdev; out->id = OMAP_DSS_OUTPUT_DPI; out->type = OMAP_DISPLAY_TYPE_DPI; + out->name = "dpi.0"; dss_register_output(out); } |