Skip to content

Commit 6acea03

Browse files
committed
drm/xe: Remove "graphics tile" from kernel doc
Avoid using "graphics tile" to refer to GT since it's ambiguous: it's **part** of a tile and there's also "media gt". In several places it's documented as "GT structure", so just follow it. Reviewed-by: Matthew Brost <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Signed-off-by: Lucas De Marchi <[email protected]>
1 parent 5001ef3 commit 6acea03

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

drivers/gpu/drm/xe/xe_exec_queue_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct xe_exec_queue {
4141
/** @xef: Back pointer to xe file if this is user created exec queue */
4242
struct xe_file *xef;
4343

44-
/** @gt: graphics tile this exec queue can submit to */
44+
/** @gt: GT structure this exec queue can submit to */
4545
struct xe_gt *gt;
4646
/**
4747
* @hwe: A hardware of the same class. May (physical engine) or may not

drivers/gpu/drm/xe/xe_gt_stats.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
/**
1414
* xe_gt_stats_incr - Increments the specified stats counter
15-
* @gt: graphics tile
15+
* @gt: GT structure
1616
* @id: xe_gt_stats_id type id that needs to be incremented
1717
* @incr: value to be incremented with
1818
*
@@ -32,7 +32,7 @@ static const char *const stat_description[__XE_GT_STATS_NUM_IDS] = {
3232

3333
/**
3434
* xe_gt_stats_print_info - Print the GT stats
35-
* @gt: graphics tile
35+
* @gt: GT structure
3636
* @p: drm_printer where it will be printed out.
3737
*
3838
* This prints out all the available GT stats.

drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ static void xe_gt_tlb_fence_timeout(struct work_struct *work)
107107

108108
/**
109109
* xe_gt_tlb_invalidation_init_early - Initialize GT TLB invalidation state
110-
* @gt: graphics tile
110+
* @gt: GT structure
111111
*
112112
* Initialize GT TLB invalidation state, purely software initialization, should
113113
* be called once during driver load.
@@ -128,7 +128,7 @@ int xe_gt_tlb_invalidation_init_early(struct xe_gt *gt)
128128

129129
/**
130130
* xe_gt_tlb_invalidation_reset - Initialize GT TLB invalidation reset
131-
* @gt: graphics tile
131+
* @gt: GT structure
132132
*
133133
* Signal any pending invalidation fences, should be called during a GT reset
134134
*/
@@ -244,7 +244,7 @@ static int send_tlb_invalidation(struct xe_guc *guc,
244244

245245
/**
246246
* xe_gt_tlb_invalidation_guc - Issue a TLB invalidation on this GT for the GuC
247-
* @gt: graphics tile
247+
* @gt: GT structure
248248
* @fence: invalidation fence which will be signal on TLB invalidation
249249
* completion
250250
*
@@ -277,7 +277,7 @@ static int xe_gt_tlb_invalidation_guc(struct xe_gt *gt,
277277

278278
/**
279279
* xe_gt_tlb_invalidation_ggtt - Issue a TLB invalidation on this GT for the GGTT
280-
* @gt: graphics tile
280+
* @gt: GT structure
281281
*
282282
* Issue a TLB invalidation for the GGTT. Completion of TLB invalidation is
283283
* synchronous.
@@ -326,7 +326,7 @@ int xe_gt_tlb_invalidation_ggtt(struct xe_gt *gt)
326326
* xe_gt_tlb_invalidation_range - Issue a TLB invalidation on this GT for an
327327
* address range
328328
*
329-
* @gt: graphics tile
329+
* @gt: GT structure
330330
* @fence: invalidation fence which will be signal on TLB invalidation
331331
* completion
332332
* @start: start address
@@ -412,7 +412,7 @@ int xe_gt_tlb_invalidation_range(struct xe_gt *gt,
412412

413413
/**
414414
* xe_gt_tlb_invalidation_vma - Issue a TLB invalidation on this GT for a VMA
415-
* @gt: graphics tile
415+
* @gt: GT structure
416416
* @fence: invalidation fence which will be signal on TLB invalidation
417417
* completion, can be NULL
418418
* @vma: VMA to invalidate

drivers/gpu/drm/xe/xe_hw_engine_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ struct xe_hw_engine_class_intf {
106106
* Contains all the hardware engine state for physical instances.
107107
*/
108108
struct xe_hw_engine {
109-
/** @gt: graphics tile this hw engine belongs to */
109+
/** @gt: GT structure this hw engine belongs to */
110110
struct xe_gt *gt;
111111
/** @name: name of this hw engine */
112112
const char *name;

drivers/gpu/drm/xe/xe_hw_fence_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct xe_hw_fence_irq {
4141
* to a xe_hw_fence_irq, maintains serial seqno.
4242
*/
4343
struct xe_hw_fence_ctx {
44-
/** @gt: graphics tile of hardware fence context */
44+
/** @gt: GT structure of hardware fence context */
4545
struct xe_gt *gt;
4646
/** @irq: fence irq handler */
4747
struct xe_hw_fence_irq *irq;

0 commit comments

Comments
 (0)