Commit cff91b62 authored by Ville Syrjälä's avatar Ville Syrjälä Committed by Dave Airlie

drm: Constify params to format_check() and framebuffer_checks()

Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 1f73cca7
...@@ -2116,7 +2116,7 @@ int drm_mode_addfb(struct drm_device *dev, ...@@ -2116,7 +2116,7 @@ int drm_mode_addfb(struct drm_device *dev,
return ret; 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; uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
...@@ -2185,7 +2185,7 @@ static int format_check(struct drm_mode_fb_cmd2 *r) ...@@ -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; int ret, hsub, vsub, num_planes, i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment