diff options
author | Magnus Damm <damm@opensource.se> | 2009-12-07 17:20:06 +0300 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-12-09 06:40:44 +0300 |
commit | ef61aae4ddf1dbd0e9b6ad21e2e57632a8fe76f6 (patch) | |
tree | 8e21c38842ffa6e5b05246376f68acb81f8294b0 /include/video | |
parent | b25b9758466bb8bc837f1863389015820f7cb11d (diff) | |
download | linux-ef61aae4ddf1dbd0e9b6ad21e2e57632a8fe76f6.tar.xz |
sh: add a start_transfer() callback to the LCDC driver
This patch adds a ->start_transfer() callback to the
driver sh_mobile_lcdcfb.c. The callback is used to
program the LCDC panel in the case of one-shot mode.
Needed by the LCD controller used on the KFR2R09 board.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/sh_mobile_lcdc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/video/sh_mobile_lcdc.h b/include/video/sh_mobile_lcdc.h index 25144ab22b95..288205457713 100644 --- a/include/video/sh_mobile_lcdc.h +++ b/include/video/sh_mobile_lcdc.h @@ -50,6 +50,8 @@ struct sh_mobile_lcdc_board_cfg { void *board_data; int (*setup_sys)(void *board_data, void *sys_ops_handle, struct sh_mobile_lcdc_sys_bus_ops *sys_ops); + void (*start_transfer)(void *board_data, void *sys_ops_handle, + struct sh_mobile_lcdc_sys_bus_ops *sys_ops); void (*display_on)(void *board_data); void (*display_off)(void *board_data); }; |