Lines Matching defs:matrox_fb_info
358 struct matrox_fb_info { struct
359 struct fb_info fbcon;
361 struct list_head next_fb;
363 int dead;
364 int initialized;
365 unsigned int usecount;
367 unsigned int userusecount;
368 unsigned long irq_flags;
370 struct matroxfb_par curr;
371 struct matrox_hw_state hw;
373 struct matrox_accel_data accel;
375 struct pci_dev* pcidev;
377 struct {
382 } crtc1;
383 struct {
389 } crtc2;
390 struct {
396 } altout;
398 struct {
404 } outputs[MATROXFB_MAX_OUTPUTS];
407 struct matroxfb_driver* (drivers[MATROXFB_MAX_FB_DRIVERS]);
408 void* (drivers_data[MATROXFB_MAX_FB_DRIVERS]);
409 unsigned int drivers_count;
411 struct {
417 } video;
419 struct {
423 } mmio;
425 unsigned int max_pixel_clock;
426 unsigned int max_pixel_clock_panellink;
428 struct matrox_switch* hw_switch;
430 struct {
433 } features;
434 struct {
437 } lock;
439 enum mga_chip chip;
441 int interleave;
442 int millenium;
443 int milleniumII;
444 struct {
451 } capable;
453 struct {
456 } mtrr;
458 struct {
485 } devflags;
486 struct fb_ops fbops;
487 struct matrox_bios bios;
488 struct {
492 } limits;
493 struct {
497 } cache;
498 struct {
522 #define info2minfo(info) container_of(info, struct matrox_fb_info, fbcon) argument