From: Thierry Reding Date: Thu, 10 Oct 2013 08:17:45 +0000 (+0200) Subject: gpu: host1x: Fix alignment of function arguments X-Git-Tag: next-20131105~55^2~33 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=37857cd2c5afa8414dccd7758f0844e7d17c00b7;p=karo-tx-linux.git 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 --- 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);