mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
gpu: nvgpu: rename tsg_gk20a and channel_gk20a structs
rename struct tsg_gk20a to struct nvgpu_tsg and rename struct channel_gk20a to struct nvgpu_channel Jira NVGPU-3248 Change-Id: I2a227347d249f9eea59223d82f09eae23dfc1306 Signed-off-by: Debarshi Dutta <ddutta@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2112424 GVS: Gerrit_Virtual_Submit Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
400c10164e
commit
17486ec1f6
@@ -40,11 +40,11 @@
|
||||
* API to get first channel from the list of all channels
|
||||
* bound to the debug session
|
||||
*/
|
||||
struct channel_gk20a *
|
||||
struct nvgpu_channel *
|
||||
nvgpu_dbg_gpu_get_session_channel(struct dbg_session_gk20a *dbg_s)
|
||||
{
|
||||
struct dbg_session_channel_data *ch_data;
|
||||
struct channel_gk20a *ch;
|
||||
struct nvgpu_channel *ch;
|
||||
struct gk20a *g = dbg_s->g;
|
||||
|
||||
nvgpu_mutex_acquire(&dbg_s->ch_list_lock);
|
||||
@@ -63,7 +63,7 @@ nvgpu_dbg_gpu_get_session_channel(struct dbg_session_gk20a *dbg_s)
|
||||
return ch;
|
||||
}
|
||||
|
||||
void nvgpu_dbg_gpu_post_events(struct channel_gk20a *ch)
|
||||
void nvgpu_dbg_gpu_post_events(struct nvgpu_channel *ch)
|
||||
{
|
||||
struct dbg_session_data *session_data;
|
||||
struct dbg_session_gk20a *dbg_s;
|
||||
@@ -92,7 +92,7 @@ void nvgpu_dbg_gpu_post_events(struct channel_gk20a *ch)
|
||||
nvgpu_mutex_release(&ch->dbg_s_lock);
|
||||
}
|
||||
|
||||
bool nvgpu_dbg_gpu_broadcast_stop_trigger(struct channel_gk20a *ch)
|
||||
bool nvgpu_dbg_gpu_broadcast_stop_trigger(struct nvgpu_channel *ch)
|
||||
{
|
||||
struct dbg_session_data *session_data;
|
||||
struct dbg_session_gk20a *dbg_s;
|
||||
@@ -120,7 +120,7 @@ bool nvgpu_dbg_gpu_broadcast_stop_trigger(struct channel_gk20a *ch)
|
||||
return broadcast;
|
||||
}
|
||||
|
||||
void nvgpu_dbg_gpu_clear_broadcast_stop_trigger(struct channel_gk20a *ch)
|
||||
void nvgpu_dbg_gpu_clear_broadcast_stop_trigger(struct nvgpu_channel *ch)
|
||||
{
|
||||
struct dbg_session_data *session_data;
|
||||
struct dbg_session_gk20a *dbg_s;
|
||||
|
||||
Reference in New Issue
Block a user