Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 251074
b: refs/heads/master
c: 1d5952a
h: refs/heads/master
v: v3
  • Loading branch information
Tomi Valkeinen committed May 12, 2011
1 parent 1e02851 commit 3412d21
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5be685faff2b75fa015832c5137bbb5513965104
refs/heads/master: 1d5952a868c3059dd0d431ffde357f1506823f5e
8 changes: 7 additions & 1 deletion trunk/drivers/video/omap2/dss/rfbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,13 @@ int rfbi_configure(int rfbi_module, int bpp, int lines)

return 0;
}
EXPORT_SYMBOL(rfbi_configure);

int omap_rfbi_configure(struct omap_dss_device *dssdev, int pixel_size,
int data_lines)
{
return rfbi_configure(dssdev->phy.rfbi.channel, pixel_size, data_lines);
}
EXPORT_SYMBOL(omap_rfbi_configure);

int omap_rfbi_prepare_update(struct omap_dss_device *dssdev,
u16 *x, u16 *y, u16 *w, u16 *h)
Expand Down
2 changes: 2 additions & 0 deletions trunk/include/video/omapdss.h
Original file line number Diff line number Diff line change
Expand Up @@ -625,5 +625,7 @@ int omap_rfbi_prepare_update(struct omap_dss_device *dssdev,
int omap_rfbi_update(struct omap_dss_device *dssdev,
u16 x, u16 y, u16 w, u16 h,
void (*callback)(void *), void *data);
int omap_rfbi_configure(struct omap_dss_device *dssdev, int pixel_size,
int data_lines);

#endif

0 comments on commit 3412d21

Please sign in to comment.