Searched refs:crtc_lut (Results 1 – 1 of 1) sorted by relevance
4781 struct drm_mode_crtc_lut *crtc_lut = data; in drm_mode_gamma_set_ioctl() local4791 crtc = drm_crtc_find(dev, crtc_lut->crtc_id); in drm_mode_gamma_set_ioctl()4803 if (crtc_lut->gamma_size != crtc->gamma_size) { in drm_mode_gamma_set_ioctl()4808 size = crtc_lut->gamma_size * (sizeof(uint16_t)); in drm_mode_gamma_set_ioctl()4810 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) { in drm_mode_gamma_set_ioctl()4816 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) { in drm_mode_gamma_set_ioctl()4822 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) { in drm_mode_gamma_set_ioctl()4853 struct drm_mode_crtc_lut *crtc_lut = data; in drm_mode_gamma_get_ioctl() local4863 crtc = drm_crtc_find(dev, crtc_lut->crtc_id); in drm_mode_gamma_get_ioctl()4870 if (crtc_lut->gamma_size != crtc->gamma_size) { in drm_mode_gamma_get_ioctl()[all …]