diff options
| -rw-r--r-- | drivers/video/udlfb.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/video/udlfb.c b/drivers/video/udlfb.c index 52b0f3e8ccac..816a4fda04f5 100644 --- a/drivers/video/udlfb.c +++ b/drivers/video/udlfb.c | |||
| @@ -1233,8 +1233,12 @@ static int dlfb_setup_modes(struct dlfb_data *dev, | |||
| 1233 | if (dlfb_is_valid_mode(&info->monspecs.modedb[i], info)) | 1233 | if (dlfb_is_valid_mode(&info->monspecs.modedb[i], info)) |
| 1234 | fb_add_videomode(&info->monspecs.modedb[i], | 1234 | fb_add_videomode(&info->monspecs.modedb[i], |
| 1235 | &info->modelist); | 1235 | &info->modelist); |
| 1236 | else /* if we've removed top/best mode */ | 1236 | else { |
| 1237 | info->monspecs.misc &= ~FB_MISC_1ST_DETAIL; | 1237 | if (i == 0) |
| 1238 | /* if we've removed top/best mode */ | ||
| 1239 | info->monspecs.misc | ||
| 1240 | &= ~FB_MISC_1ST_DETAIL; | ||
| 1241 | } | ||
| 1238 | } | 1242 | } |
| 1239 | 1243 | ||
| 1240 | default_vmode = fb_find_best_display(&info->monspecs, | 1244 | default_vmode = fb_find_best_display(&info->monspecs, |
