diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-05-17 07:27:24 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-05-22 05:35:15 -0400 |
commit | ebe0f2442cc4c5493a85c875d2d8a44ffecc1175 (patch) | |
tree | f9ce0f9183ee558c766916f9b0709e8220242b37 /drivers/gpu/drm/drm_fb_helper.c | |
parent | e6ecefaadfcdb03db8ac9e739b4ba7a93a8811b3 (diff) |
drm: Make the CRTC gamma_set operation optional
Drivers for hardware without gamma support should not be forced to
implement a no-op gamma set operation.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Rob Clark <rob.clark@linaro.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_fb_helper.c')
-rw-r--r-- | drivers/gpu/drm/drm_fb_helper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index 9b773d51cff5..5683b7fdd746 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c | |||
@@ -136,6 +136,9 @@ static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc) | |||
136 | { | 136 | { |
137 | uint16_t *r_base, *g_base, *b_base; | 137 | uint16_t *r_base, *g_base, *b_base; |
138 | 138 | ||
139 | if (crtc->funcs->gamma_set == NULL) | ||
140 | return; | ||
141 | |||
139 | r_base = crtc->gamma_store; | 142 | r_base = crtc->gamma_store; |
140 | g_base = r_base + crtc->gamma_size; | 143 | g_base = r_base + crtc->gamma_size; |
141 | b_base = g_base + crtc->gamma_size; | 144 | b_base = g_base + crtc->gamma_size; |