summaryrefslogtreecommitdiff
path: root/include/vbe.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2016-10-09 11:14:15 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2016-10-12 02:56:51 (GMT)
commit5f6ad029f31e897fa8bd62d3f42092e051932bc2 (patch)
treeba60b78cec6d50f712d807365921079733e17b29 /include/vbe.h
parent10491c838ebed4d5e1fec4655b8bf2de48c6328e (diff)
downloadu-boot-5f6ad029f31e897fa8bd62d3f42092e051932bc2.tar.xz
vbe: Make vbe_setup_video_priv() public
vbe_setup_video_priv() might be useful to other drivers. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/vbe.h')
-rw-r--r--include/vbe.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/vbe.h b/include/vbe.h
index a743892..16bb096 100644
--- a/include/vbe.h
+++ b/include/vbe.h
@@ -107,6 +107,10 @@ extern struct vbe_mode_info mode_info;
struct graphic_device;
int vbe_get_video_info(struct graphic_device *gdev);
struct video_priv;
+struct video_uc_platdata;
+int vbe_setup_video_priv(struct vesa_mode_info *vesa,
+ struct video_priv *uc_priv,
+ struct video_uc_platdata *plat);
int vbe_setup_video(struct udevice *dev, int (*int15_handler)(void));
#endif