Skip to content

Commit

Permalink
[PATCH] fbdev: Convert a few drivers to use the fb_find_best_display …
Browse files Browse the repository at this point in the history
…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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
adaplas authored and Linus Torvalds committed Nov 7, 2005
1 parent 003cfc0 commit 5ee1ef9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 45 deletions.
17 changes: 4 additions & 13 deletions drivers/video/i810/i810_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1871,27 +1871,18 @@ static void __devinit i810fb_find_init_mode(struct fb_info *info)
fb_videomode_to_modelist(specs->modedb, specs->modedb_len,
&info->modelist);
if (specs->modedb != NULL) {
if (xres && yres) {
struct fb_videomode *m;
struct fb_videomode *m;

if (xres && yres) {
if ((m = fb_find_best_mode(&var, &info->modelist))) {
mode = *m;
found = 1;
}
}

if (!found && specs->misc & FB_MISC_1ST_DETAIL) {
for (i = 0; i < specs->modedb_len; i++) {
if (specs->modedb[i].flag & FB_MODE_IS_FIRST) {
mode = specs->modedb[i];
found = 1;
break;
}
}
}

if (!found) {
mode = specs->modedb[0];
m = fb_find_best_display(&info->monspecs, &info->modelist);
mode = *m;
found = 1;
}

Expand Down
18 changes: 3 additions & 15 deletions drivers/video/nvidia/nvidia.c
Original file line number Diff line number Diff line change
Expand Up @@ -1383,22 +1383,10 @@ static int __devinit nvidia_set_fbinfo(struct fb_info *info)
fb_var_to_videomode(&modedb, &nvidiafb_default_var);

if (specs->modedb != NULL) {
/* get preferred timing */
if (specs->misc & FB_MISC_1ST_DETAIL) {
int i;

for (i = 0; i < specs->modedb_len; i++) {
if (specs->modedb[i].flag & FB_MODE_IS_FIRST) {
modedb = specs->modedb[i];
break;
}
}
} else {
/* otherwise, get first mode in database */
modedb = specs->modedb[0];
}
struct fb_videomode *modedb;

fb_videomode_to_var(&nvidiafb_default_var, &modedb);
modedb = fb_find_best_display(specs, &info->modelist);
fb_videomode_to_var(&nvidiafb_default_var, modedb);
nvidiafb_default_var.bits_per_pixel = 8;
} else if (par->fpWidth && par->fpHeight) {
char buf[16];
Expand Down
21 changes: 4 additions & 17 deletions drivers/video/savage/savagefb_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -2052,24 +2052,11 @@ static int __devinit savagefb_probe (struct pci_dev* dev,
info->monspecs.modedb, info->monspecs.modedb_len,
NULL, 8);
} else if (info->monspecs.modedb != NULL) {
struct fb_monspecs *specs = &info->monspecs;
struct fb_videomode modedb;
struct fb_videomode *modedb;

if (info->monspecs.misc & FB_MISC_1ST_DETAIL) {
int i;

for (i = 0; i < specs->modedb_len; i++) {
if (specs->modedb[i].flag & FB_MODE_IS_FIRST) {
modedb = specs->modedb[i];
break;
}
}
} else {
/* otherwise, get first mode in database */
modedb = specs->modedb[0];
}

savage_update_var(&info->var, &modedb);
modedb = fb_find_best_display(&info->monspecs,
&info->modelist);
savage_update_var(&info->var, modedb);
}

/* maximize virtual vertical length */
Expand Down

0 comments on commit 5ee1ef9

Please sign in to comment.