diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-11-08 03:07:20 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-12-30 09:14:15 -0500 |
commit | 8ee5c8427110e53e4eb71a872092e97973d9b940 (patch) | |
tree | ceec9b438a0f57884cf7b5edf5b84a6d307aa565 /drivers/video | |
parent | 802eee95bde72fd0cd0f3a5b2098375a487d1eda (diff) |
OMAPDSS: fix missing EXPORT_SYMBOL()s
Functions dispc_ovl_set_fifo_threshold and
dispc_ovl_compute_fifo_thresholds need to be exported. Add the
EXPORT_SYMBOLs.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/omap2/dss/dispc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c index 4ec59ca72e5d..d8f4aeeaeec4 100644 --- a/drivers/video/omap2/dss/dispc.c +++ b/drivers/video/omap2/dss/dispc.c | |||
@@ -1201,6 +1201,7 @@ void dispc_ovl_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high) | |||
1201 | FLD_VAL(high, hi_start, hi_end) | | 1201 | FLD_VAL(high, hi_start, hi_end) | |
1202 | FLD_VAL(low, lo_start, lo_end)); | 1202 | FLD_VAL(low, lo_start, lo_end)); |
1203 | } | 1203 | } |
1204 | EXPORT_SYMBOL(dispc_ovl_set_fifo_threshold); | ||
1204 | 1205 | ||
1205 | void dispc_enable_fifomerge(bool enable) | 1206 | void dispc_enable_fifomerge(bool enable) |
1206 | { | 1207 | { |
@@ -1259,6 +1260,7 @@ void dispc_ovl_compute_fifo_thresholds(enum omap_plane plane, | |||
1259 | *fifo_high = total_fifo_size - buf_unit; | 1260 | *fifo_high = total_fifo_size - buf_unit; |
1260 | } | 1261 | } |
1261 | } | 1262 | } |
1263 | EXPORT_SYMBOL(dispc_ovl_compute_fifo_thresholds); | ||
1262 | 1264 | ||
1263 | static void dispc_ovl_set_fir(enum omap_plane plane, | 1265 | static void dispc_ovl_set_fir(enum omap_plane plane, |
1264 | int hinc, int vinc, | 1266 | int hinc, int vinc, |