summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-08-11 11:32:40 -0700
committerEric Anholt <eric@anholt.net>2015-06-04 14:15:17 -0700
commit318fbbe04d301ee577289c02ca8632a3f3674ca1 (patch)
treefb24fd7138cbcdde2ddb54951561c1cabdb574e1
parent51bd38241bdc3cee795668518dea68a567df72c9 (diff)
downloadlinux-318fbbe04d301ee577289c02ca8632a3f3674ca1.tar.gz
drm/vc4: Rename a struct exec_info argument for consistency with the rest.
Signed-off-by: Eric Anholt <eric@anholt.net>
-rw-r--r--drivers/gpu/drm/vc4/vc4_gem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_gem.c b/drivers/gpu/drm/vc4/vc4_gem.c
index 854216f92482..3918d5bc8723 100644
--- a/drivers/gpu/drm/vc4/vc4_gem.c
+++ b/drivers/gpu/drm/vc4/vc4_gem.c
@@ -131,11 +131,11 @@ wait_for_render_thread(struct drm_device *dev, u32 initial_rfc)
*/
static int
-vc4_submit(struct drm_device *dev, struct exec_info *args)
+vc4_submit(struct drm_device *dev, struct exec_info *exec)
{
struct vc4_dev *vc4 = to_vc4_dev(dev);
- uint32_t ct0ca = args->ct0ca, ct0ea = args->ct0ea;
- uint32_t ct1ca = args->ct1ca, ct1ea = args->ct1ea;
+ uint32_t ct0ca = exec->ct0ca, ct0ea = exec->ct0ea;
+ uint32_t ct1ca = exec->ct1ca, ct1ea = exec->ct1ea;
int ret;
/* flushes caches */