From 1b79764f495c769f3d56a4229085e313f23c9e3e Mon Sep 17 00:00:00 2001 From: Andreas Hartmetz Date: Tue, 7 Jan 2014 03:18:42 +0100 Subject: [PATCH] radeonsi: Rename radeonsi->si remaining identifiers in si_uvd.c. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Marek Olšák --- src/gallium/drivers/radeonsi/si_uvd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_uvd.c b/src/gallium/drivers/radeonsi/si_uvd.c index 8d3dccadf94..5a7cbd3bf06 100644 --- a/src/gallium/drivers/radeonsi/si_uvd.c +++ b/src/gallium/drivers/radeonsi/si_uvd.c @@ -131,7 +131,7 @@ error: } /* set the decoding target buffer offsets */ -static struct radeon_winsys_cs_handle* radeonsi_uvd_set_dtb(struct ruvd_msg *msg, struct vl_video_buffer *buf) +static struct radeon_winsys_cs_handle* si_uvd_set_dtb(struct ruvd_msg *msg, struct vl_video_buffer *buf) { struct r600_texture *luma = (struct r600_texture *)buf->resources[0]; struct r600_texture *chroma = (struct r600_texture *)buf->resources[1]; @@ -149,5 +149,5 @@ static struct radeon_winsys_cs_handle* radeonsi_uvd_set_dtb(struct ruvd_msg *msg struct pipe_video_codec *si_uvd_create_decoder(struct pipe_context *context, const struct pipe_video_codec *templ) { - return ruvd_create_decoder(context, templ, radeonsi_uvd_set_dtb); + return ruvd_create_decoder(context, templ, si_uvd_set_dtb); } -- 2.30.2