From 8b3cc74c6911e9b2835fe6e160f84bae463a70ef Mon Sep 17 00:00:00 2001 From: Ville Syrjälä Date: Fri, 2 Jun 2017 18:18:38 +0300 Subject: lib: Constify igt_buf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No one generally needs to modify the igt_bufs we pass around, so make them const. Signed-off-by: Ville Syrjälä Reviewed-by: Chris Wilson --- lib/media_fill.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/media_fill.c') diff --git a/lib/media_fill.c b/lib/media_fill.c index 0223c0bb..49422295 100644 --- a/lib/media_fill.c +++ b/lib/media_fill.c @@ -91,7 +91,7 @@ static const uint32_t gen8_media_kernel[][4] = { void gen7_media_fillfunc(struct intel_batchbuffer *batch, - struct igt_buf *dst, + const struct igt_buf *dst, unsigned int x, unsigned int y, unsigned int width, unsigned int height, uint8_t color) @@ -135,7 +135,7 @@ gen7_media_fillfunc(struct intel_batchbuffer *batch, void gen8_media_fillfunc(struct intel_batchbuffer *batch, - struct igt_buf *dst, + const struct igt_buf *dst, unsigned int x, unsigned int y, unsigned int width, unsigned int height, uint8_t color) @@ -179,7 +179,7 @@ gen8_media_fillfunc(struct intel_batchbuffer *batch, static void __gen9_media_fillfunc(struct intel_batchbuffer *batch, - struct igt_buf *dst, + const struct igt_buf *dst, unsigned int x, unsigned int y, unsigned int width, unsigned int height, uint8_t color, const uint32_t kernel[][4], @@ -235,7 +235,7 @@ __gen9_media_fillfunc(struct intel_batchbuffer *batch, void gen9_media_fillfunc(struct intel_batchbuffer *batch, - struct igt_buf *dst, + const struct igt_buf *dst, unsigned int x, unsigned int y, unsigned int width, unsigned int height, uint8_t color) -- cgit v1.2.3