Lines Matching defs:fix
64 static int sisfb_get_fix(struct fb_fix_screeninfo *fix, int con,
1458 sisfb_get_fix(&info->fix, -1, info);
1872 sisfb_get_fix(struct fb_fix_screeninfo *fix, int con, struct fb_info *info)
1876 memset(fix, 0, sizeof(struct fb_fix_screeninfo));
1878 strscpy(fix->id, ivideo->myid, sizeof(fix->id));
1881 fix->smem_start = ivideo->video_base + ivideo->video_offset;
1882 fix->smem_len = ivideo->sisfb_mem;
1884 fix->type = FB_TYPE_PACKED_PIXELS;
1885 fix->type_aux = 0;
1886 fix->visual = (ivideo->video_bpp == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
1887 fix->xpanstep = 1;
1888 fix->ypanstep = (ivideo->sisfb_ypan) ? 1 : 0;
1889 fix->ywrapstep = 0;
1890 fix->line_length = ivideo->video_linelength;
1891 fix->mmio_start = ivideo->mmio_base;
1892 fix->mmio_len = ivideo->mmio_size;
1894 fix->accel = FB_ACCEL_SIS_GLAMOUR;
1898 fix->accel = FB_ACCEL_SIS_XABRE;
1900 fix->accel = FB_ACCEL_XGI_VOLARI_Z;
1902 fix->accel = FB_ACCEL_XGI_VOLARI_V;
1904 fix->accel = FB_ACCEL_SIS_GLAMOUR_2;
6484 sis_fb_info->fix = ivideo->sisfb_fix;