Searched refs:ast_crtc (Results 1 – 3 of 3) sorted by relevance
276 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_fb_gamma_set() local277 ast_crtc->lut_r[regno] = red >> 8; in ast_fb_gamma_set()278 ast_crtc->lut_g[regno] = green >> 8; in ast_fb_gamma_set()279 ast_crtc->lut_b[regno] = blue >> 8; in ast_fb_gamma_set()285 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_fb_gamma_get() local286 *red = ast_crtc->lut_r[regno] << 8; in ast_fb_gamma_get()287 *green = ast_crtc->lut_g[regno] << 8; in ast_fb_gamma_get()288 *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()636 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); in ast_crtc_gamma_set() local641 ast_crtc->lut_r[i] = red[i] >> 8; in ast_crtc_gamma_set()642 ast_crtc->lut_g[i] = green[i] >> 8; in ast_crtc_gamma_set()643 ast_crtc->lut_b[i] = blue[i] >> 8; in ast_crtc_gamma_set()666 struct ast_crtc *crtc; in ast_crtc_init()669 crtc = kzalloc(sizeof(struct ast_crtc), GFP_KERNEL); in ast_crtc_init()1141 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