[tip: x86/cleanups] x86/fpu: Fix kernel-doc formatting above fpu_enable_guest_xfd_features()

From: tip-bot2 for Chao Gao

Date: Tue Jun 30 2026 - 20:23:34 EST


The following commit has been merged into the x86/cleanups branch of tip:

Commit-ID: b47748678c6cd831aba376f6b2d90b7718c7c661
Gitweb: https://git.kernel.org/tip/b47748678c6cd831aba376f6b2d90b7718c7c661
Author: Chao Gao <chao.gao@xxxxxxxxx>
AuthorDate: Thu, 19 Jun 2025 22:21:50 -07:00
Committer: Borislav Petkov (AMD) <bp@xxxxxxxxx>
CommitterDate: Tue, 30 Jun 2026 17:17:45 -07:00

x86/fpu: Fix kernel-doc formatting above fpu_enable_guest_xfd_features()

Adjust the indentation and use tabs between function parameters and
their descriptions to align with the convention used in FPU code.

Signed-off-by: Chao Gao <chao.gao@xxxxxxxxx>
Signed-off-by: Borislav Petkov (AMD) <bp@xxxxxxxxx>
Link: https://patch.msgid.link/20250620052152.490414-1-chao.gao@xxxxxxxxx
---
arch/x86/kernel/fpu/core.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/arch/x86/kernel/fpu/core.c b/arch/x86/kernel/fpu/core.c
index 584fb99..2ed2613 100644
--- a/arch/x86/kernel/fpu/core.c
+++ b/arch/x86/kernel/fpu/core.c
@@ -294,15 +294,15 @@ void fpu_free_guest_fpstate(struct fpu_guest *gfpu)
}
EXPORT_SYMBOL_FOR_KVM(fpu_free_guest_fpstate);

-/*
- * fpu_enable_guest_xfd_features - Check xfeatures against guest perm and enable
- * @guest_fpu: Pointer to the guest FPU container
- * @xfeatures: Features requested by guest CPUID
- *
- * Enable all dynamic xfeatures according to guest perm and requested CPUID.
- *
- * Return: 0 on success, error code otherwise
- */
+/**
+ * fpu_enable_guest_xfd_features - Check xfeatures against guest perm and enable
+ * @guest_fpu: Pointer to the guest FPU container
+ * @xfeatures: Features requested by guest CPUID
+ *
+ * Enable all dynamic xfeatures according to guest perm and requested CPUID.
+ *
+ * Return: 0 on success, error code otherwise
+ */
int fpu_enable_guest_xfd_features(struct fpu_guest *guest_fpu, u64 xfeatures)
{
lockdep_assert_preemption_enabled();