fbdev: sh_mobile_lcdc: Rename mode argument to modes
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Mon, 13 Aug 2012 11:56:46 +0000 (13:56 +0200)
committerLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Wed, 21 Nov 2012 14:50:00 +0000 (15:50 +0100)
The sh_mobile_lcdc_channel_fb_init() mode argument is used to pass a
list of modes, rename it to modes.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
drivers/video/sh_mobile_lcdcfb.c

index 7375dbf08c78197e2086b024138ee661ff582220..82b53f7d11b9d3af023bd42037f6e03bf80f438a 100644 (file)
@@ -2187,7 +2187,7 @@ sh_mobile_lcdc_channel_fb_cleanup(struct sh_mobile_lcdc_chan *ch)
 
 static int __devinit
 sh_mobile_lcdc_channel_fb_init(struct sh_mobile_lcdc_chan *ch,
-                              const struct fb_videomode *mode,
+                              const struct fb_videomode *modes,
                               unsigned int num_modes)
 {
        struct sh_mobile_lcdc_priv *priv = ch->lcdc;
@@ -2213,7 +2213,7 @@ sh_mobile_lcdc_channel_fb_init(struct sh_mobile_lcdc_chan *ch,
        info->pseudo_palette = &ch->pseudo_palette;
        info->par = ch;
 
-       fb_videomode_to_modelist(mode, num_modes, &info->modelist);
+       fb_videomode_to_modelist(modes, num_modes, &info->modelist);
 
        ret = fb_alloc_cmap(&info->cmap, PALETTE_NR, 0);
        if (ret < 0) {
@@ -2247,7 +2247,7 @@ sh_mobile_lcdc_channel_fb_init(struct sh_mobile_lcdc_chan *ch,
         * default.
         */
        var = &info->var;
-       fb_videomode_to_var(var, mode);
+       fb_videomode_to_var(var, modes);
        var->width = ch->display.width;
        var->height = ch->display.height;
        var->xres_virtual = ch->xres_virtual;