diff options
Diffstat (limited to 'drivers/video/console')
-rw-r--r-- | drivers/video/console/fbcon.c | 4 | ||||
-rw-r--r-- | drivers/video/console/fbcon.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 31f476a64790..ce5ac268074e 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c | |||
@@ -2071,7 +2071,7 @@ static int fbcon_resize(struct vc_data *vc, unsigned int width, | |||
2071 | y_diff = info->var.yres - var.yres; | 2071 | y_diff = info->var.yres - var.yres; |
2072 | if (x_diff < 0 || x_diff > virt_fw || | 2072 | if (x_diff < 0 || x_diff > virt_fw || |
2073 | y_diff < 0 || y_diff > virt_fh) { | 2073 | y_diff < 0 || y_diff > virt_fh) { |
2074 | struct fb_videomode *mode; | 2074 | const struct fb_videomode *mode; |
2075 | 2075 | ||
2076 | DPRINTK("attempting resize %ix%i\n", var.xres, var.yres); | 2076 | DPRINTK("attempting resize %ix%i\n", var.xres, var.yres); |
2077 | mode = fb_find_best_mode(&var, &info->modelist); | 2077 | mode = fb_find_best_mode(&var, &info->modelist); |
@@ -2975,7 +2975,7 @@ static void fbcon_new_modelist(struct fb_info *info) | |||
2975 | int i; | 2975 | int i; |
2976 | struct vc_data *vc; | 2976 | struct vc_data *vc; |
2977 | struct fb_var_screeninfo var; | 2977 | struct fb_var_screeninfo var; |
2978 | struct fb_videomode *mode; | 2978 | const struct fb_videomode *mode; |
2979 | 2979 | ||
2980 | for (i = first_fb_vc; i <= last_fb_vc; i++) { | 2980 | for (i = first_fb_vc; i <= last_fb_vc; i++) { |
2981 | if (registered_fb[con2fb_map[i]] != info) | 2981 | if (registered_fb[con2fb_map[i]] != info) |
diff --git a/drivers/video/console/fbcon.h b/drivers/video/console/fbcon.h index b9386d168c04..71f24e00fcd0 100644 --- a/drivers/video/console/fbcon.h +++ b/drivers/video/console/fbcon.h | |||
@@ -48,7 +48,7 @@ struct display { | |||
48 | struct fb_bitfield green; | 48 | struct fb_bitfield green; |
49 | struct fb_bitfield blue; | 49 | struct fb_bitfield blue; |
50 | struct fb_bitfield transp; | 50 | struct fb_bitfield transp; |
51 | struct fb_videomode *mode; | 51 | const struct fb_videomode *mode; |
52 | }; | 52 | }; |
53 | 53 | ||
54 | struct fbcon_ops { | 54 | struct fbcon_ops { |