diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2007-02-12 03:55:19 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:44 -0500 |
commit | 9791d763de8cca82b42a7a579e031db78e8011ff (patch) | |
tree | b3a13693bad97543a75a53a2c5d97ad63ed26c09 /drivers/video/console/fbcon.c | |
parent | 5c52cbeb7f27e1242e88f99f7f6486a16d5733c7 (diff) |
[PATCH] fbdev modedb: make more pointer parameters const
fbdev modedb: make more input and output pointer parameters const
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: James Simmons <jsimmons@infradead.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/console/fbcon.c')
-rw-r--r-- | drivers/video/console/fbcon.c | 4 |
1 files changed, 2 insertions, 2 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) |