diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-04-29 08:57:01 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-12 12:39:50 -0400 |
commit | 1d5952a868c3059dd0d431ffde357f1506823f5e (patch) | |
tree | c7639df6089f6aee63781c1486f28aea066ecae9 /drivers/video/omap2 | |
parent | 5be685faff2b75fa015832c5137bbb5513965104 (diff) |
OMAP: DSS2: RFBI: add omap_rfbi_configure
Add omap_rfbi_configure() which the panel driver can use to reconfigure
the data element size and the number of data lines in the RFBI bus.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2')
-rw-r--r-- | drivers/video/omap2/dss/rfbi.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/rfbi.c b/drivers/video/omap2/dss/rfbi.c index 1c19d174fac..155caf02bca 100644 --- a/drivers/video/omap2/dss/rfbi.c +++ b/drivers/video/omap2/dss/rfbi.c | |||
@@ -851,7 +851,13 @@ int rfbi_configure(int rfbi_module, int bpp, int lines) | |||
851 | 851 | ||
852 | return 0; | 852 | return 0; |
853 | } | 853 | } |
854 | EXPORT_SYMBOL(rfbi_configure); | 854 | |
855 | int omap_rfbi_configure(struct omap_dss_device *dssdev, int pixel_size, | ||
856 | int data_lines) | ||
857 | { | ||
858 | return rfbi_configure(dssdev->phy.rfbi.channel, pixel_size, data_lines); | ||
859 | } | ||
860 | EXPORT_SYMBOL(omap_rfbi_configure); | ||
855 | 861 | ||
856 | int omap_rfbi_prepare_update(struct omap_dss_device *dssdev, | 862 | int omap_rfbi_prepare_update(struct omap_dss_device *dssdev, |
857 | u16 *x, u16 *y, u16 *w, u16 *h) | 863 | u16 *x, u16 *y, u16 *w, u16 *h) |