Skip to content

Commit

Permalink
drm/amdkfd: Fix bug in call to init_pipelines()
Browse files Browse the repository at this point in the history
This patch fixes a bug where the first_pipe index passed into init_pipelines()
was a #define instead of the value that is passed into amdkfd by radeon

Signed-off-by: Oded Gabbay <oded.gabbay@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
  • Loading branch information
Oded Gabbay committed Jan 22, 2015
1 parent 749042b commit 9fa843e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ static int init_scheduler(struct device_queue_manager *dqm)

pr_debug("kfd: In %s\n", __func__);

retval = init_pipelines(dqm, get_pipes_num(dqm), KFD_DQM_FIRST_PIPE);
retval = init_pipelines(dqm, get_pipes_num(dqm), get_first_pipe(dqm));
if (retval != 0)
return retval;

Expand Down

0 comments on commit 9fa843e

Please sign in to comment.