Lines Matching refs:modelist
442 struct w100_mode *modelist = par->mach->modelist; in w100fb_get_mode() local
447 if (modelist[i].xres >= *x && modelist[i].yres >= *y && in w100fb_get_mode()
448 modelist[i].xres < best_x && modelist[i].yres < best_y) { in w100fb_get_mode()
449 best_x = modelist[i].xres; in w100fb_get_mode()
450 best_y = modelist[i].yres; in w100fb_get_mode()
451 mode = &modelist[i]; in w100fb_get_mode()
452 } else if(modelist[i].xres >= *y && modelist[i].yres >= *x && in w100fb_get_mode()
453 modelist[i].xres < best_y && modelist[i].yres < best_x) { in w100fb_get_mode()
454 best_x = modelist[i].yres; in w100fb_get_mode()
455 best_y = modelist[i].xres; in w100fb_get_mode()
456 mode = &modelist[i]; in w100fb_get_mode()
730 par->mode = &inf->modelist[0]; in w100fb_probe()