Home | History | Annotate | Download | only in src

Lines Matching defs:mode

44     MSOCRegPtr		mode = pSmi->mode;
48 mode->system_ctl.value = READ_SCR(pSmi, SYSTEM_CTL);
51 SMI501_PowerPanel(pScrn, mode, TRUE);
57 SMI501_PowerPanel(pScrn, mode, FALSE);
69 MSOCRegPtr mode = pSmi->mode;
73 mode->system_ctl.value = READ_SCR(pSmi, SYSTEM_CTL);
76 mode->system_ctl.f.dpmsh = 0;
77 mode->system_ctl.f.dpmsv = 0;
80 mode->system_ctl.f.dpmsh = 1;
81 mode->system_ctl.f.dpmsv = 0;
84 mode->system_ctl.f.dpmsh = 0;
85 mode->system_ctl.f.dpmsv = 1;
88 mode->system_ctl.f.dpmsh = 1;
89 mode->system_ctl.f.dpmsv = 1;
92 WRITE_SCR(pSmi, SYSTEM_CTL, mode->system_ctl.value);
103 MSOCRegPtr mode = pSmi->mode;
108 mode->crt_detect.value = READ_SCR(pSmi, CRT_DETECT);
109 mode->crt_detect.f.enable = 1;
110 WRITE_SCR(pSmi, CRT_DETECT, mode->crt_detect.value);
113 mode->crt_detect.value = READ_SCR(pSmi, CRT_DETECT);
120 status = mode->crt_detect.f.data ?
123 mode->crt_detect.f.enable = 0;
124 WRITE_SCR(pSmi, CRT_DETECT, mode->crt_detect.value);