Skip to content

Commit bdc4ba3

Browse files
committed
fix indentation
1 parent 2500303 commit bdc4ba3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,11 @@ static int amdgpu_cs_pass1(struct amdgpu_cs_parser *p,
289289
if (ret)
290290
goto free_all_kdata;
291291

292-
ret = drm_sched_job_init(&p->jobs[i]->base,
293-
p->entities[i],
294-
1, /* credits */
295-
&fpriv->vm, /* owner */
296-
p->filp->client_id);
292+
ret = drm_sched_job_init(&p->jobs[i]->base,
293+
p->entities[i],
294+
1, /* credits */
295+
&fpriv->vm, /* owner */
296+
p->filp->client_id);
297297
if (ret)
298298
goto free_all_kdata;
299299
}

drivers/gpu/drm/amd/amdgpu/amdgpu_job.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ int amdgpu_job_submit(struct amdgpu_job *job, struct drm_sched_entity *entity,
222222

223223
/* If the client id isn't known, default to 0. It will appear in traces. */
224224
r = drm_sched_job_init(&job->base, entity,
225-
1, /* credits */
226-
owner,
227-
0);
225+
1, /* credits */
226+
owner,
227+
0);
228228
if (r)
229229
return r;
230230

0 commit comments

Comments
 (0)