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/riva | |
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/riva')
-rw-r--r-- | drivers/video/riva/fbdev.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/video/riva/fbdev.c b/drivers/video/riva/fbdev.c index 9316905e027a..f2e9b742c92f 100644 --- a/drivers/video/riva/fbdev.c +++ b/drivers/video/riva/fbdev.c | |||
@@ -894,7 +894,8 @@ out: | |||
894 | return rc; | 894 | return rc; |
895 | } | 895 | } |
896 | 896 | ||
897 | static void riva_update_var(struct fb_var_screeninfo *var, struct fb_videomode *modedb) | 897 | static void riva_update_var(struct fb_var_screeninfo *var, |
898 | const struct fb_videomode *modedb) | ||
898 | { | 899 | { |
899 | NVTRACE_ENTER(); | 900 | NVTRACE_ENTER(); |
900 | var->xres = var->xres_virtual = modedb->xres; | 901 | var->xres = var->xres_virtual = modedb->xres; |
@@ -1152,7 +1153,7 @@ static int rivafb_release(struct fb_info *info, int user) | |||
1152 | 1153 | ||
1153 | static int rivafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) | 1154 | static int rivafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) |
1154 | { | 1155 | { |
1155 | struct fb_videomode *mode; | 1156 | const struct fb_videomode *mode; |
1156 | struct riva_par *par = info->par; | 1157 | struct riva_par *par = info->par; |
1157 | int nom, den; /* translating from pixels->bytes */ | 1158 | int nom, den; /* translating from pixels->bytes */ |
1158 | int mode_valid = 0; | 1159 | int mode_valid = 0; |