aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/savage
diff options
context:
space:
mode:
authorAntonino A. Daplas <adaplas@gmail.com>2005-11-07 04:00:55 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-07 10:53:53 -0500
commit5ee1ef96a0d5c49809c61bdbb30cdda88e1d23cf (patch)
treedbb520ffd6c6ca8e955b1df70e89697e8b5957e7 /drivers/video/savage
parent003cfc0c56977f1c3ce48ddfd2073b7c6d75a5d8 (diff)
[PATCH] fbdev: Convert a few drivers to use the fb_find_best_display helper
Convert i810fb, nvidiafb and savagefb to use the fb_find_best_display helper when searching for the initial video mode. Signed-off-by: Antonino Daplas <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/savage')
-rw-r--r--drivers/video/savage/savagefb_driver.c21
1 files changed, 4 insertions, 17 deletions
diff --git a/drivers/video/savage/savagefb_driver.c b/drivers/video/savage/savagefb_driver.c
index 06e989ba3d13..f0dfb35e3191 100644
--- a/drivers/video/savage/savagefb_driver.c
+++ b/drivers/video/savage/savagefb_driver.c
@@ -2052,24 +2052,11 @@ static int __devinit savagefb_probe (struct pci_dev* dev,
2052 info->monspecs.modedb, info->monspecs.modedb_len, 2052 info->monspecs.modedb, info->monspecs.modedb_len,
2053 NULL, 8); 2053 NULL, 8);
2054 } else if (info->monspecs.modedb != NULL) { 2054 } else if (info->monspecs.modedb != NULL) {
2055 struct fb_monspecs *specs = &info->monspecs; 2055 struct fb_videomode *modedb;
2056 struct fb_videomode modedb;
2057 2056
2058 if (info->monspecs.misc & FB_MISC_1ST_DETAIL) { 2057 modedb = fb_find_best_display(&info->monspecs,
2059 int i; 2058 &info->modelist);
2060 2059 savage_update_var(&info->var, modedb);
2061 for (i = 0; i < specs->modedb_len; i++) {
2062 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) {
2063 modedb = specs->modedb[i];
2064 break;
2065 }
2066 }
2067 } else {
2068 /* otherwise, get first mode in database */
2069 modedb = specs->modedb[0];
2070 }
2071
2072 savage_update_var(&info->var, &modedb);
2073 } 2060 }
2074 2061
2075 /* maximize virtual vertical length */ 2062 /* maximize virtual vertical length */