aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
authorMichal Wajdeczko <michal.wajdeczko@intel.com>2026-05-27 14:21:54 +0200
committerMichal Wajdeczko <michal.wajdeczko@intel.com>2026-05-29 15:48:46 +0200
commit41e328c62a5662459dcb49cb995ebd5c13179b39 (patch)
tree588cdf4000af67067ff47f5f9092abfc837c73ee /drivers
parent6680bf0cb7261b7eb62a7226c6845c5c9ce5a009 (diff)
downloadlinux-next-history-41e328c62a5662459dcb49cb995ebd5c13179b39.tar.gz
drm/xe/ggtt: Fix xe_ggtt documentation
The following error is reported during the htmldocs build: ... Documentation/gpu/xe/xe_mm:22: ../drivers/gpu/drm/xe/xe_ggtt.c:125: ERROR: Unexpected indentation. [docutils] Fix this by adding a blank line before the enumeration. While around correct some invalid spaces. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Reviewed-by: Maarten Lankhorst <dev@lankhorst.se> Link: https://patch.msgid.link/20260527122154.22480-1-michal.wajdeczko@intel.com
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/xe/xe_ggtt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
index a351c578b1705..8ec23862477fc 100644
--- a/drivers/gpu/drm/xe/xe_ggtt.c
+++ b/drivers/gpu/drm/xe/xe_ggtt.c
@@ -111,14 +111,14 @@ struct xe_ggtt_pt_ops {
struct xe_ggtt {
/** @tile: Back pointer to tile where this GGTT belongs */
struct xe_tile *tile;
- /** @start: Start offset of GGTT */
+ /** @start: Start offset of GGTT */
u64 start;
/** @size: Total usable size of this GGTT */
u64 size;
-
/**
- * @flags: Flags for this GGTT
+ * @flags: Flags for this GGTT.
* Acceptable flags:
+ *
* - %XE_GGTT_FLAGS_64K - if PTE size is 64K. Otherwise, regular is 4K.
* - %XE_GGTT_FLAGS_ONLINE - is GGTT online, protected by ggtt->lock
* after init
@@ -129,7 +129,7 @@ struct xe_ggtt {
/** @lock: Mutex lock to protect GGTT data */
struct mutex lock;
/**
- * @gsm: The iomem pointer to the actual location of the translation
+ * @gsm: The iomem pointer to the actual location of the translation
* table located in the GSM for easy PTE manipulation
*/
u64 __iomem *gsm;