diff options
author | Thierry Reding <treding@nvidia.com> | 2013-10-10 10:17:45 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2013-10-31 09:20:08 +0100 |
commit | 37857cd2c5afa8414dccd7758f0844e7d17c00b7 (patch) | |
tree | 75b9636c88fc62a1c8fcbd67d02da654ccda7723 /drivers/gpu/host1x | |
parent | 452e7f0cdaf229dc9da36e7a3d36d88a4d51fb56 (diff) | |
download | blackbird-op-linux-37857cd2c5afa8414dccd7758f0844e7d17c00b7.tar.gz blackbird-op-linux-37857cd2c5afa8414dccd7758f0844e7d17c00b7.zip |
gpu: host1x: Fix alignment of function arguments
Arguments on subsequent lines should be aligned with the first argument.
This one occurrence went unnoticed during code review.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/host1x')
-rw-r--r-- | drivers/gpu/host1x/job.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/host1x/job.c b/drivers/gpu/host1x/job.c index c9ddff8c76cd..a7310da0cfaa 100644 --- a/drivers/gpu/host1x/job.c +++ b/drivers/gpu/host1x/job.c @@ -264,7 +264,7 @@ static unsigned int do_relocs(struct host1x_job *job, struct host1x_bo *cmdbuf) } static bool check_reloc(struct host1x_reloc *reloc, struct host1x_bo *cmdbuf, - unsigned int offset) + unsigned int offset) { offset *= sizeof(u32); |