浏览代码

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>
Thierry Reding 12 年之前
父节点
当前提交
37857cd2c5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/gpu/host1x/job.c

+ 1 - 1
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);