Lines Matching refs:modelist
437 struct w100_mode *modelist = par->mach->modelist; in w100fb_get_mode() local
442 if (modelist[i].xres >= *x && modelist[i].yres >= *y && in w100fb_get_mode()
443 modelist[i].xres < best_x && modelist[i].yres < best_y) { in w100fb_get_mode()
444 best_x = modelist[i].xres; in w100fb_get_mode()
445 best_y = modelist[i].yres; in w100fb_get_mode()
446 mode = &modelist[i]; in w100fb_get_mode()
447 } else if(modelist[i].xres >= *y && modelist[i].yres >= *x && in w100fb_get_mode()
448 modelist[i].xres < best_y && modelist[i].yres < best_x) { in w100fb_get_mode()
449 best_x = modelist[i].yres; in w100fb_get_mode()
450 best_y = modelist[i].xres; in w100fb_get_mode()
451 mode = &modelist[i]; in w100fb_get_mode()
722 par->mode = &inf->modelist[0]; in w100fb_probe()