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
This commit is contained in:
Michal Wajdeczko 2026-05-27 14:21:54 +02:00
parent 6680bf0cb7
commit 41e328c62a

View File

@ -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;