gpu: nvgpu: rename set_channel_info_veid parameter

gops_pbdma.set_channel_info_veid takes a subctx_id (i.e. veid),
not a channel_id.
Renamed parameter to subctx_id.

Jira NVGPU-3694

Change-Id: If64d06b1041fd42b6a0fcaf6bbb30e156235fa54
Signed-off-by: Thomas Fleury <tfleury@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2253631
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: svc-mobile-misra <svc-mobile-misra@nvidia.com>
Reviewed-by: svc-mobile-cert <svc-mobile-cert@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Alex Waterman <alexw@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Thomas Fleury
2019-11-22 16:13:46 -05:00
committed by Alex Waterman
parent 64b0794ab8
commit 9191461a6a
3 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ bool gv11b_pbdma_handle_intr_1(struct gk20a *g, u32 pbdma_id, u32 pbdma_intr_1,
u32 gv11b_pbdma_channel_fatal_0_intr_descs(void);
u32 gv11b_pbdma_get_fc_pb_header(void);
u32 gv11b_pbdma_get_fc_target(void);
u32 gv11b_pbdma_set_channel_info_veid(u32 channel_id);
u32 gv11b_pbdma_set_channel_info_veid(u32 subctx_id);
u32 gv11b_pbdma_config_userd_writeback_enable(void);
#endif /* NVGPU_PBDMA_GV11B_H */

View File

@@ -270,9 +270,9 @@ u32 gv11b_pbdma_get_fc_target(void)
pbdma_target_ce_ctx_valid_true_f());
}
u32 gv11b_pbdma_set_channel_info_veid(u32 channel_id)
u32 gv11b_pbdma_set_channel_info_veid(u32 subctx_id)
{
return pbdma_set_channel_info_veid_f(channel_id);
return pbdma_set_channel_info_veid_f(subctx_id);
}
u32 gv11b_pbdma_config_userd_writeback_enable(void)

View File

@@ -77,7 +77,7 @@ struct gops_pbdma {
u32 (*get_userd_hi_addr)(u32 addr_hi);
u32 (*get_fc_runlist_timeslice)(void);
u32 (*get_config_auth_level_privileged)(void);
u32 (*set_channel_info_veid)(u32 channel_id);
u32 (*set_channel_info_veid)(u32 subctx_id);
u32 (*config_userd_writeback_enable)(void);
u32 (*allowed_syncpoints_0_index_f)(u32 syncpt);
u32 (*allowed_syncpoints_0_valid_f)(void);