diff options
author | Thierry Reding <treding@nvidia.com> | 2013-10-10 08:17:45 (GMT) |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2013-10-31 08:20:08 (GMT) |
commit | 37857cd2c5afa8414dccd7758f0844e7d17c00b7 (patch) | |
tree | 75b9636c88fc62a1c8fcbd67d02da654ccda7723 | |
parent | 452e7f0cdaf229dc9da36e7a3d36d88a4d51fb56 (diff) | |
download | linux-37857cd2c5afa8414dccd7758f0844e7d17c00b7.tar.xz |
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>
-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 c9ddff8..a7310da 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); |