| /OK3568_Linux_fs/kernel/drivers/gpu/drm/selftests/ |
| H A D | test-drm_cmdline_parser.c | 22 struct drm_cmdline_mode mode = { }; in drm_cmdline_test_force_e_only() local 26 &mode)); in drm_cmdline_test_force_e_only() 27 FAIL_ON(mode.specified); in drm_cmdline_test_force_e_only() 28 FAIL_ON(mode.refresh_specified); in drm_cmdline_test_force_e_only() 29 FAIL_ON(mode.bpp_specified); in drm_cmdline_test_force_e_only() 31 FAIL_ON(mode.rb); in drm_cmdline_test_force_e_only() 32 FAIL_ON(mode.cvt); in drm_cmdline_test_force_e_only() 33 FAIL_ON(mode.interlace); in drm_cmdline_test_force_e_only() 34 FAIL_ON(mode.margins); in drm_cmdline_test_force_e_only() 35 FAIL_ON(mode.force != DRM_FORCE_ON); in drm_cmdline_test_force_e_only() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/modes/ |
| H A D | xf86Modes.c | 41 xf86ModeHSync(const DisplayModeRec * mode) in xf86ModeHSync() argument 45 if (mode->HSync > 0.0) in xf86ModeHSync() 46 hsync = mode->HSync; in xf86ModeHSync() 47 else if (mode->HTotal > 0) in xf86ModeHSync() 48 hsync = (float) mode->Clock / (float) mode->HTotal; in xf86ModeHSync() 57 xf86ModeVRefresh(const DisplayModeRec * mode) in xf86ModeVRefresh() argument 61 if (mode->VRefresh > 0.0) in xf86ModeVRefresh() 62 refresh = mode->VRefresh; in xf86ModeVRefresh() 63 else if (mode->HTotal > 0 && mode->VTotal > 0) { in xf86ModeVRefresh() 64 refresh = mode->Clock * 1000.0 / mode->HTotal / mode->VTotal; in xf86ModeVRefresh() [all …]
|
| H A D | xf86DiDGA.c | 42 DGAModePtr modes, mode; in xf86_dga_get_modes() local 66 mode = modes + num++; in xf86_dga_get_modes() 68 mode->mode = display_mode; in xf86_dga_get_modes() 69 mode->flags = DGA_CONCURRENT_ACCESS; in xf86_dga_get_modes() 71 mode->flags |= DGA_DOUBLESCAN; in xf86_dga_get_modes() 73 mode->flags |= DGA_INTERLACED; in xf86_dga_get_modes() 74 mode->byteOrder = scrn->imageByteOrder; in xf86_dga_get_modes() 75 mode->depth = scrn->depth; in xf86_dga_get_modes() 76 mode->bitsPerPixel = scrn->bitsPerPixel; in xf86_dga_get_modes() 77 mode->red_mask = scrn->mask.red; in xf86_dga_get_modes() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/video/ |
| H A D | ati_radeon_fb.c | 199 static void radeon_write_pll_regs(struct radeonfb_info *rinfo, struct radeon_regs *mode) in radeon_write_pll_regs() argument 215 if ((mode->ppll_ref_div == (INPLL(PPLL_REF_DIV) & PPLL_REF_DIV_MASK)) && in radeon_write_pll_regs() 216 (mode->ppll_div_3 == (INPLL(PPLL_DIV_3) & in radeon_write_pll_regs() 222 mode->clk_cntl_index & PPLL_DIV_SEL_MASK, in radeon_write_pll_regs() 242 mode->clk_cntl_index & PPLL_DIV_SEL_MASK, in radeon_write_pll_regs() 250 if (mode->ppll_ref_div & R300_PPLL_REF_DIV_ACC_MASK) { in radeon_write_pll_regs() 254 OUTPLLP(PPLL_REF_DIV, mode->ppll_ref_div, 0); in radeon_write_pll_regs() 258 (mode->ppll_ref_div << R300_PPLL_REF_DIV_ACC_SHIFT), in radeon_write_pll_regs() 262 OUTPLLP(PPLL_REF_DIV, mode->ppll_ref_div, ~PPLL_REF_DIV_MASK); in radeon_write_pll_regs() 265 OUTPLLP(PPLL_DIV_3, mode->ppll_div_3, ~PPLL_FB3_DIV_MASK); in radeon_write_pll_regs() [all …]
|
| H A D | mxsfb.c | 51 struct ctfb_res_modes *mode, int bpp) in mxs_lcd_init() argument 58 mxs_set_lcdclk(MXS_LCDIF_BASE, PS2KHZ(mode->pixclock)); in mxs_lcd_init() 95 writel((mode->yres << LCDIF_TRANSFER_COUNT_V_COUNT_OFFSET) | mode->xres, in mxs_lcd_init() 101 mode->vsync_len, ®s->hw_lcdif_vdctrl0); in mxs_lcd_init() 102 writel(mode->upper_margin + mode->lower_margin + in mxs_lcd_init() 103 mode->vsync_len + mode->yres, in mxs_lcd_init() 105 writel((mode->hsync_len << LCDIF_VDCTRL2_HSYNC_PULSE_WIDTH_OFFSET) | in mxs_lcd_init() 106 (mode->left_margin + mode->right_margin + in mxs_lcd_init() 107 mode->hsync_len + mode->xres), in mxs_lcd_init() 109 writel(((mode->left_margin + mode->hsync_len) << in mxs_lcd_init() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xquartz/GL/ |
| H A D | glcontextmodes.c | 129 _gl_copy_visual_to_context_mode(__GLcontextModes * mode, in _gl_copy_visual_to_context_mode() argument 132 __GLcontextModes * const next = mode->next; in _gl_copy_visual_to_context_mode() 134 (void)_mesa_memset(mode, 0, sizeof(__GLcontextModes)); in _gl_copy_visual_to_context_mode() 135 mode->next = next; in _gl_copy_visual_to_context_mode() 137 mode->visualID = config->vid; in _gl_copy_visual_to_context_mode() 138 mode->visualType = _gl_convert_from_x_visual_type(config->class); in _gl_copy_visual_to_context_mode() 139 mode->fbconfigID = config->vid; in _gl_copy_visual_to_context_mode() 140 mode->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT; in _gl_copy_visual_to_context_mode() 142 mode->rgbMode = (config->rgba != 0); in _gl_copy_visual_to_context_mode() 143 mode->renderType = (mode->rgbMode) ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT; in _gl_copy_visual_to_context_mode() [all …]
|
| /OK3568_Linux_fs/external/xserver/randr/ |
| H A D | rrmode.c | 66 RRModePtr mode, *newModes; in RRModeCreate() local 71 mode = malloc(sizeof(RRModeRec) + modeInfo->nameLength + 1); in RRModeCreate() 72 if (!mode) in RRModeCreate() 74 mode->refcnt = 1; in RRModeCreate() 75 mode->mode = *modeInfo; in RRModeCreate() 76 mode->name = (char *) (mode + 1); in RRModeCreate() 77 memcpy(mode->name, name, modeInfo->nameLength); in RRModeCreate() 78 mode->name[modeInfo->nameLength] = '\0'; in RRModeCreate() 79 mode->userScreen = userScreen; in RRModeCreate() 87 free(mode); in RRModeCreate() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | expmed.h | 115 machine_mode mode; member 228 expmed_mode_index (machine_mode mode) in expmed_mode_index() argument 230 switch (GET_MODE_CLASS (mode)) in expmed_mode_index() 233 return mode - MIN_MODE_INT; in expmed_mode_index() 238 return mode - MIN_MODE_PARTIAL_INT + NUM_MODE_INT; in expmed_mode_index() 244 return mode - MIN_MODE_VECTOR_INT + NUM_MODE_IP_INT; in expmed_mode_index() 258 machine_mode mode) in expmed_op_cheap_ptr() argument 260 int idx = expmed_mode_index (mode); in expmed_op_cheap_ptr() 269 machine_mode mode) in expmed_op_cost_ptr() argument 271 int idx = expmed_mode_index (mode); in expmed_op_cost_ptr() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | expmed.h | 115 machine_mode mode; member 228 expmed_mode_index (machine_mode mode) in expmed_mode_index() argument 230 switch (GET_MODE_CLASS (mode)) in expmed_mode_index() 233 return mode - MIN_MODE_INT; in expmed_mode_index() 238 return mode - MIN_MODE_PARTIAL_INT + NUM_MODE_INT; in expmed_mode_index() 244 return mode - MIN_MODE_VECTOR_INT + NUM_MODE_IP_INT; in expmed_mode_index() 258 machine_mode mode) in expmed_op_cheap_ptr() argument 260 int idx = expmed_mode_index (mode); in expmed_op_cheap_ptr() 269 machine_mode mode) in expmed_op_cost_ptr() argument 271 int idx = expmed_mode_index (mode); in expmed_op_cost_ptr() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/vbe/ |
| H A D | vbeModes.c | 46 VbeModeInfoBlock *mode; in GetDepthFlag() local 49 if ((mode = VBEGetModeInfo(pVbe, id)) == NULL) in GetDepthFlag() 52 if (VBE_MODE_USABLE(mode, 0)) { in GetDepthFlag() 55 if (VBE_MODE_COLOR(mode)) { in GetDepthFlag() 56 depth = mode->RedMaskSize + mode->GreenMaskSize + in GetDepthFlag() 57 mode->BlueMaskSize; in GetDepthFlag() 62 bpp = mode->BitsPerPixel; in GetDepthFlag() 63 VBEFreeModeInfo(mode); in GetDepthFlag() 64 mode = NULL; in GetDepthFlag() 85 if (mode) in GetDepthFlag() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/gma500/ |
| H A D | mdfld_tmd_vid.c | 37 struct drm_display_mode *mode; in tmd_vid_get_config_mode() local 42 mode = kzalloc(sizeof(*mode), GFP_KERNEL); in tmd_vid_get_config_mode() 43 if (!mode) in tmd_vid_get_config_mode() 47 mode->hdisplay = (ti->hactive_hi << 8) | ti->hactive_lo; in tmd_vid_get_config_mode() 48 mode->vdisplay = (ti->vactive_hi << 8) | ti->vactive_lo; in tmd_vid_get_config_mode() 49 mode->hsync_start = mode->hdisplay + \ in tmd_vid_get_config_mode() 52 mode->hsync_end = mode->hsync_start + \ in tmd_vid_get_config_mode() 55 mode->htotal = mode->hdisplay + ((ti->hblank_hi << 8) | \ in tmd_vid_get_config_mode() 57 mode->vsync_start = \ in tmd_vid_get_config_mode() 58 mode->vdisplay + ((ti->vsync_offset_hi << 8) | \ in tmd_vid_get_config_mode() [all …]
|
| H A D | mdfld_tpo_vid.c | 32 struct drm_display_mode *mode; in tpo_vid_get_config_mode() local 34 mode = kzalloc(sizeof(*mode), GFP_KERNEL); in tpo_vid_get_config_mode() 35 if (!mode) in tpo_vid_get_config_mode() 38 mode->hdisplay = 864; in tpo_vid_get_config_mode() 39 mode->vdisplay = 480; in tpo_vid_get_config_mode() 40 mode->hsync_start = 873; in tpo_vid_get_config_mode() 41 mode->hsync_end = 876; in tpo_vid_get_config_mode() 42 mode->htotal = 887; in tpo_vid_get_config_mode() 43 mode->vsync_start = 487; in tpo_vid_get_config_mode() 44 mode->vsync_end = 490; in tpo_vid_get_config_mode() [all …]
|
| /OK3568_Linux_fs/kernel/sound/soc/codecs/ |
| H A D | wcd-clsh-v2.c | 14 int mode; member 127 int mode) in wcd_clsh_set_buck_mode() argument 130 if (mode == CLS_H_HIFI) in wcd_clsh_set_buck_mode() 141 int mode) in wcd_clsh_set_flyback_mode() argument 144 if (mode == CLS_H_HIFI) in wcd_clsh_set_flyback_mode() 155 int mode, in wcd_clsh_buck_ctrl() argument 174 int mode, in wcd_clsh_flyback_ctrl() argument 195 static void wcd_clsh_set_gain_path(struct wcd_clsh_ctrl *ctrl, int mode) in wcd_clsh_set_gain_path() argument 200 switch (mode) { in wcd_clsh_set_gain_path() 223 int mode) in wcd_clsh_set_hph_mode() argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath5k/ |
| H A D | eeprom.c | 41 unsigned int mode) in ath5k_eeprom_bin2freq() argument 48 if (mode == AR5K_EEPROM_MODE_11A) { in ath5k_eeprom_bin2freq() 190 unsigned int mode) in ath5k_eeprom_read_ants() argument 198 ee->ee_switch_settling[mode] = (val >> 8) & 0x7f; in ath5k_eeprom_read_ants() 199 ee->ee_atn_tx_rx[mode] = (val >> 2) & 0x3f; in ath5k_eeprom_read_ants() 200 ee->ee_ant_control[mode][i] = (val << 4) & 0x3f; in ath5k_eeprom_read_ants() 203 ee->ee_ant_control[mode][i++] |= (val >> 12) & 0xf; in ath5k_eeprom_read_ants() 204 ee->ee_ant_control[mode][i++] = (val >> 6) & 0x3f; in ath5k_eeprom_read_ants() 205 ee->ee_ant_control[mode][i++] = val & 0x3f; in ath5k_eeprom_read_ants() 208 ee->ee_ant_control[mode][i++] = (val >> 10) & 0x3f; in ath5k_eeprom_read_ants() [all …]
|
| /OK3568_Linux_fs/external/xserver/dix/ |
| H A D | enterleave.c | 176 EnterWindow(DeviceIntPtr dev, WindowPtr win, int mode) in EnterWindow() argument 232 WindowPtr ancestor, WindowPtr child, int mode, int detail) in DeviceEnterNotifies() argument 238 DeviceEnterNotifies(dev, sourceid, ancestor, parent, mode, detail); in DeviceEnterNotifies() 239 DeviceEnterLeaveEvent(dev, sourceid, XI_Enter, mode, detail, parent, in DeviceEnterNotifies() 250 WindowPtr ancestor, WindowPtr child, int mode, int detail) in CoreEnterNotifies() argument 256 CoreEnterNotifies(dev, ancestor, parent, mode, detail); in CoreEnterNotifies() 278 CoreEnterLeaveEvent(dev, EnterNotify, mode, detail, parent, in CoreEnterNotifies() 284 WindowPtr child, WindowPtr ancestor, int mode, int detail) in CoreLeaveNotifies() argument 315 CoreEnterLeaveEvent(dev, LeaveNotify, mode, detail, win, in CoreLeaveNotifies() 329 WindowPtr child, WindowPtr ancestor, int mode, int detail) in DeviceLeaveNotifies() argument [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/video/sunxi/ |
| H A D | lcdc.c | 16 static int lcdc_get_clk_delay(const struct display_timing *mode, int tcon) in lcdc_get_clk_delay() argument 20 delay = mode->vfront_porch.typ + mode->vsync_len.typ + in lcdc_get_clk_delay() 21 mode->vback_porch.typ; in lcdc_get_clk_delay() 22 if (mode->flags & DISPLAY_FLAGS_INTERLACED) in lcdc_get_clk_delay() 71 const struct display_timing *mode, in lcdc_tcon0_mode_set() argument 83 clk_delay = lcdc_get_clk_delay(mode, 0); in lcdc_tcon0_mode_set() 90 writel(SUNXI_LCDC_X(mode->hactive.typ) | in lcdc_tcon0_mode_set() 91 SUNXI_LCDC_Y(mode->vactive.typ), &lcdc->tcon0_timing_active); in lcdc_tcon0_mode_set() 93 bp = mode->hsync_len.typ + mode->hback_porch.typ; in lcdc_tcon0_mode_set() 94 total = mode->hactive.typ + mode->hfront_porch.typ + bp; in lcdc_tcon0_mode_set() [all …]
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | sysctl.c | 218 .mode = table->mode, in bpf_stats_handler() 1666 .mode = table->mode, in proc_do_static_key() 1692 .mode = 0644, 1700 .mode = 0644, 1709 .mode = 0644, 1718 .mode = 0644, 1728 .mode = 0644, 1735 .mode = 0644, 1744 .mode = 0644, 1751 .mode = 0644, [all …]
|
| /OK3568_Linux_fs/kernel/net/ipv4/ |
| H A D | sysctl_net_ipv4.c | 83 .mode = table->mode, in ipv4_local_port_range() 119 .mode = table->mode, in ipv4_privileged_ports() 179 .mode = table->mode, in ipv4_ping_group_range() 418 .mode = 0644, 425 .mode = 0644, 432 .mode = 0644, 439 .mode = 0644, 446 .mode = 0644, 453 .mode = 0644, 461 .mode = 0644, [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/fbdevhw/ |
| H A D | fbdevhw.c | 136 print_xfree_mode(const char *txt, DisplayModePtr mode) in print_xfree_mode() argument 139 txt, mode->Clock, in print_xfree_mode() 140 mode->HDisplay, mode->HSyncStart, mode->HSyncEnd, mode->HTotal, in print_xfree_mode() 141 mode->VDisplay, mode->VSyncStart, mode->VSyncEnd, mode->VTotal); in print_xfree_mode() 169 xfree2fbdev_timing(DisplayModePtr mode, struct fb_var_screeninfo *var) in xfree2fbdev_timing() argument 171 var->xres = mode->HDisplay; in xfree2fbdev_timing() 172 var->yres = mode->VDisplay; in xfree2fbdev_timing() 178 var->pixclock = mode->Clock ? 1000000000 / mode->Clock : 0; in xfree2fbdev_timing() 179 var->right_margin = mode->HSyncStart - mode->HDisplay; in xfree2fbdev_timing() 180 var->hsync_len = mode->HSyncEnd - mode->HSyncStart; in xfree2fbdev_timing() [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aie/ |
| H A D | rk_aiq_algo_aie_itf.cpp | 44 ctx->params.mode = (rk_aiq_ie_effect_t)calib_ie->mode; in create_context() 46 ctx->params.mode = RK_AIQ_IE_EFFECT_NONE; in create_context() 55 ctx->params.mode = (rk_aiq_ie_effect_t)calibv2_ie->param.mode; in create_context() 57 ctx->params.mode = RK_AIQ_IE_EFFECT_NONE; in create_context() 132 ((rk_aiq_ie_effect_t)calib_ie->mode == ctx->last_params.mode))) { in prepare() 135 ctx->params.mode = (rk_aiq_ie_effect_t)calib_ie->mode; in prepare() 136 ctx->last_params.mode = ctx->params.mode; in prepare() 140 ctx->params.mode = (rk_aiq_ie_effect_t)calib_ie->mode; in prepare() 141 ctx->last_params.mode = ctx->params.mode; in prepare() 143 ctx->params.mode = RK_AIQ_IE_EFFECT_NONE; in prepare() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/ |
| H A D | drm_modes.c | 54 void drm_mode_debug_printmodeline(const struct drm_display_mode *mode) in drm_mode_debug_printmodeline() argument 56 DRM_DEBUG_KMS("Modeline " DRM_MODE_FMT "\n", DRM_MODE_ARG(mode)); in drm_mode_debug_printmodeline() 89 void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode) in drm_mode_destroy() argument 91 if (!mode) in drm_mode_destroy() 94 kfree(mode); in drm_mode_destroy() 108 struct drm_display_mode *mode) in drm_mode_probed_add() argument 112 list_add_tail(&mode->head, &connector->probed_modes); in drm_mode_probed_add() 740 void drm_mode_set_name(struct drm_display_mode *mode) in drm_mode_set_name() argument 742 bool interlaced = !!(mode->flags & DRM_MODE_FLAG_INTERLACE); in drm_mode_set_name() 744 snprintf(mode->name, DRM_DISPLAY_MODE_LEN, "%dx%d%s", in drm_mode_set_name() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/video/drm/ |
| H A D | rk1000_tve.c | 135 struct drm_display_mode *mode = &conn_state->mode; in rk1000_tve_bridge_enable() local 144 if (mode->vdisplay == 576) { in rk1000_tve_bridge_enable() 169 struct drm_display_mode *mode) in drm_rk1000_select_output() argument 186 mode->hdisplay = 720; in drm_rk1000_select_output() 187 mode->hsync_start = 732; in drm_rk1000_select_output() 188 mode->hsync_end = 738; in drm_rk1000_select_output() 189 mode->htotal = 864; in drm_rk1000_select_output() 190 mode->vdisplay = 576; in drm_rk1000_select_output() 191 mode->vsync_start = 582; in drm_rk1000_select_output() 192 mode->vsync_end = 588; in drm_rk1000_select_output() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/ipu-v3/ |
| H A D | ipu-di.c | 205 u32 h_total = sig->mode.hactive + sig->mode.hsync_len + in ipu_di_sync_config_interlaced() 206 sig->mode.hback_porch + sig->mode.hfront_porch; in ipu_di_sync_config_interlaced() 207 u32 v_total = sig->mode.vactive + sig->mode.vsync_len + in ipu_di_sync_config_interlaced() 208 sig->mode.vback_porch + sig->mode.vfront_porch; in ipu_di_sync_config_interlaced() 220 .cnt_down = sig->mode.hsync_len * 2, in ipu_di_sync_config_interlaced() 227 .cnt_down = sig->mode.vsync_len * 2, in ipu_di_sync_config_interlaced() 240 .offset_count = (sig->mode.vsync_len + in ipu_di_sync_config_interlaced() 241 sig->mode.vback_porch) / 2, in ipu_di_sync_config_interlaced() 243 .repeat_count = sig->mode.vactive / 2, in ipu_di_sync_config_interlaced() 248 .offset_count = sig->mode.hsync_len + in ipu_di_sync_config_interlaced() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/subdev/pci/ |
| H A D | agp.c | 31 int mode; member 59 u32 mode = nvkm_pci_rd32(pci, 0x004c); in nvkm_agp_preinit() local 66 if ((mode | pci->agp.mode) & PCI_AGP_COMMAND_FW) { in nvkm_agp_preinit() 67 mode = pci->agp.mode & ~PCI_AGP_COMMAND_FW; in nvkm_agp_preinit() 68 agp_enable(pci->agp.bridge, mode); in nvkm_agp_preinit() 92 agp_enable(pci->agp.bridge, pci->agp.mode); in nvkm_agp_init() 110 int mode = -1; in nvkm_agp_ctor() local 120 mode = 0; in nvkm_agp_ctor() 122 mode = nvkm_longopt(device->cfgopt, "NvAGP", mode); in nvkm_agp_ctor() 132 pci->agp.mode = info.mode; in nvkm_agp_ctor() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/core/ |
| H A D | modedb.c | 543 const struct fb_videomode *mode, unsigned int bpp) in fb_try_mode() argument 548 mode->name ? mode->name : "noname", in fb_try_mode() 549 mode->xres, mode->yres, bpp, mode->refresh); in fb_try_mode() 550 var->xres = mode->xres; in fb_try_mode() 551 var->yres = mode->yres; in fb_try_mode() 552 var->xres_virtual = mode->xres; in fb_try_mode() 553 var->yres_virtual = mode->yres; in fb_try_mode() 558 var->pixclock = mode->pixclock; in fb_try_mode() 559 var->left_margin = mode->left_margin; in fb_try_mode() 560 var->right_margin = mode->right_margin; in fb_try_mode() [all …]
|