diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-11-29 01:05:47 +0100 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-03-12 22:40:53 +0100 |
commit | e0c8601a18969229eb63065e5c3176319c785288 (patch) | |
tree | 7481ec5e0b4b2b8ca2454af71093682f4d8c48db /drivers/video/sh_mobile_lcdcfb.h | |
parent | 7295752fd7ec86feca6e3ccb407c1cbabf59e1d3 (diff) | |
download | blackbird-op-linux-e0c8601a18969229eb63065e5c3176319c785288.tar.gz blackbird-op-linux-e0c8601a18969229eb63065e5c3176319c785288.zip |
fbdev: sh_mobile_lcdc: Pass a video mode to the notify callback
Pass pointers to struct fb_videomode and struct fb_monspecs instead of
struct fb_var_screeninfo to the notify callback.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'drivers/video/sh_mobile_lcdcfb.h')
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.h b/drivers/video/sh_mobile_lcdcfb.h index e2eb7af438f7..10086ae2c5ea 100644 --- a/drivers/video/sh_mobile_lcdcfb.h +++ b/drivers/video/sh_mobile_lcdcfb.h @@ -79,7 +79,8 @@ struct sh_mobile_lcdc_chan { int (*notify)(struct sh_mobile_lcdc_chan *ch, enum sh_mobile_lcdc_entity_event event, - struct fb_var_screeninfo *var); + const struct fb_videomode *mode, + const struct fb_monspecs *monspec); }; #endif |