diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2012-05-24 20:54:00 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-05-29 11:06:58 +0100 |
commit | cff91b625f2cd607ddb7a82b453f7c67906b70db (patch) | |
tree | bc0223708b9f6f3ff24ee1e8f4ba299be5980407 /drivers/gpu | |
parent | 1f73cca799d29df80de3e8f1f1c488485467577a (diff) | |
download | linux-cff91b625f2cd607ddb7a82b453f7c67906b70db.tar.gz |
drm: Constify params to format_check() and framebuffer_checks()
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/drm_crtc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index 92cea9d77ec9..5c3f30cbe535 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c @@ -2116,7 +2116,7 @@ out: return ret; } -static int format_check(struct drm_mode_fb_cmd2 *r) +static int format_check(const struct drm_mode_fb_cmd2 *r) { uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN; @@ -2185,7 +2185,7 @@ static int format_check(struct drm_mode_fb_cmd2 *r) } } -static int framebuffer_check(struct drm_mode_fb_cmd2 *r) +static int framebuffer_check(const struct drm_mode_fb_cmd2 *r) { int ret, hsub, vsub, num_planes, i; |