On Tuesday 20 November 2012 16:54:50 Steffen Trumtrar wrote:
Hi!
Changes since v11:
- make pointers const where applicable
- add reviewed-by Laurent Pinchart
Looks good to me.
Acked-by: Laurent Pinchart laurent.pinchart@ideasonboard.com
Through which tree do you plan to push this ?
Regards, Steffen
Steffen Trumtrar (6): video: add display_timing and videomode video: add of helper for videomode fbmon: add videomode helpers fbmon: add of_videomode helpers drm_modes: add videomode helpers drm_modes: add of_videomode helpers
.../devicetree/bindings/video/display-timings.txt | 107 ++++++++++ drivers/gpu/drm/drm_modes.c | 70 +++++++ drivers/video/Kconfig | 19 ++ drivers/video/Makefile | 4 + drivers/video/display_timing.c | 24 +++ drivers/video/fbmon.c | 86 ++++++++ drivers/video/of_display_timing.c | 216 +++++++++++++++++ drivers/video/of_videomode.c | 48 +++++ drivers/video/videomode.c | 46 +++++ include/drm/drmP.h | 12 ++ include/linux/display_timing.h | 70 +++++++ include/linux/fb.h | 13 ++ include/linux/of_display_timings.h | 20 ++ include/linux/of_videomode.h | 18 ++ include/linux/videomode.h | 40 ++++ 15 files changed, 793 insertions(+) create mode 100644 Documentation/devicetree/bindings/video/display-timings.txt create mode 100644 drivers/video/display_timing.c create mode 100644 drivers/video/of_display_timing.c create mode 100644 drivers/video/of_videomode.c create mode 100644 drivers/video/videomode.c create mode 100644 include/linux/display_timing.h create mode 100644 include/linux/of_display_timings.h create mode 100644 include/linux/of_videomode.h create mode 100644 include/linux/videomode.h