Searched refs:ast_crtc (Results 1 – 3 of 3) sorted by relevance
267 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_fb_gamma_set() local268 ast_crtc->lut_r[regno] = red >> 8; in ast_fb_gamma_set()269 ast_crtc->lut_g[regno] = green >> 8; in ast_fb_gamma_set()270 ast_crtc->lut_b[regno] = blue >> 8; in ast_fb_gamma_set()276 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_fb_gamma_get() local277 *red = ast_crtc->lut_r[regno] << 8; in ast_fb_gamma_get()278 *green = ast_crtc->lut_g[regno] << 8; in ast_fb_gamma_get()279 *blue = ast_crtc->lut_b[regno] << 8; in ast_fb_gamma_get()
66 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_crtc_load_lut() local73 ast_load_palette_index(ast, i, ast_crtc->lut_r[i], in ast_crtc_load_lut()74 ast_crtc->lut_g[i], ast_crtc->lut_b[i]); in ast_crtc_load_lut()638 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_crtc_gamma_set() local643 ast_crtc->lut_r[i] = red[i] >> 8; in ast_crtc_gamma_set()644 ast_crtc->lut_g[i] = green[i] >> 8; in ast_crtc_gamma_set()645 ast_crtc->lut_b[i] = blue[i] >> 8; in ast_crtc_gamma_set()668 struct ast_crtc *crtc; in ast_crtc_init()671 crtc = kzalloc(sizeof(struct ast_crtc), GFP_KERNEL); in ast_crtc_init()1143 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_cursor_set() local[all …]
238 struct ast_crtc { struct267 #define to_ast_crtc(x) container_of(x, struct ast_crtc, base) argument