diff options
author | Steffen Trumtrar <s.trumtrar@pengutronix.de> | 2012-11-14 05:12:38 -0500 |
---|---|---|
committer | Steffen Trumtrar <s.trumtrar@pengutronix.de> | 2013-01-24 03:04:04 -0500 |
commit | 790890444f591145d3a00623af461c9006e17d51 (patch) | |
tree | 03b288ca5c98d9cb72b37db4640dc8988017ca06 /include/linux/fb.h | |
parent | 2db54c72395298a58f29c75ae880be9e478fdbbd (diff) |
fbmon: add of_videomode helpers
Add helper to get fb_videomode from devicetree.
Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de>
Acked-by: Thierry Reding <thierry.reding@avionic-design.de>
Tested-by: Thierry Reding <thierry.reding@avionic-design.de>
Tested-by: Philipp Zabel <p.zabel@pengutronix.de>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Tested-by: Afzal Mohammed <Afzal@ti.com>
Tested-by: Rob Clark <robclark@gmail.com>
Tested-by: Leela Krishna Amudala <leelakrishna.a@gmail.com>
Diffstat (limited to 'include/linux/fb.h')
-rw-r--r-- | include/linux/fb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h index 100a1765b787..58b98606ac26 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
@@ -20,6 +20,7 @@ struct fb_info; | |||
20 | struct device; | 20 | struct device; |
21 | struct file; | 21 | struct file; |
22 | struct videomode; | 22 | struct videomode; |
23 | struct device_node; | ||
23 | 24 | ||
24 | /* Definitions below are used in the parsed monitor specs */ | 25 | /* Definitions below are used in the parsed monitor specs */ |
25 | #define FB_DPMS_ACTIVE_OFF 1 | 26 | #define FB_DPMS_ACTIVE_OFF 1 |
@@ -715,6 +716,9 @@ extern void fb_destroy_modedb(struct fb_videomode *modedb); | |||
715 | extern int fb_find_mode_cvt(struct fb_videomode *mode, int margins, int rb); | 716 | extern int fb_find_mode_cvt(struct fb_videomode *mode, int margins, int rb); |
716 | extern unsigned char *fb_ddc_read(struct i2c_adapter *adapter); | 717 | extern unsigned char *fb_ddc_read(struct i2c_adapter *adapter); |
717 | 718 | ||
719 | extern int of_get_fb_videomode(struct device_node *np, | ||
720 | struct fb_videomode *fb, | ||
721 | int index); | ||
718 | extern int fb_videomode_from_videomode(const struct videomode *vm, | 722 | extern int fb_videomode_from_videomode(const struct videomode *vm, |
719 | struct fb_videomode *fbmode); | 723 | struct fb_videomode *fbmode); |
720 | 724 | ||