diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-02-15 11:47:42 (GMT) |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-04-03 12:19:01 (GMT) |
commit | 27831620a6d1b50d1a09f3a5bb3f1451b937b7ed (patch) | |
tree | cf6ba17bb69a6ca2eff7dba2ea0aa8a2b81ca5b6 /drivers/video | |
parent | 346f1e0772cbd087f176fd3e09ffa5a4569812e6 (diff) | |
download | linux-fsl-qoriq-27831620a6d1b50d1a09f3a5bb3f1451b937b7ed.tar.xz |
OMAPDSS: add missing export for omap_dss_get_output()
omap_dss_get_output() is a public function, but was missing
EXPORT_SYMBOL().
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/omap2/dss/output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/output.c b/drivers/video/omap2/dss/output.c index 79dea1a..5214df6 100644 --- a/drivers/video/omap2/dss/output.c +++ b/drivers/video/omap2/dss/output.c @@ -113,6 +113,7 @@ struct omap_dss_output *omap_dss_get_output(enum omap_dss_output_id id) return NULL; } +EXPORT_SYMBOL(omap_dss_get_output); static const struct dss_mgr_ops *dss_mgr_ops; |