mirror of
https://github.com/torvalds/linux.git
synced 2026-06-03 20:14:06 +02:00
x86/fpu: Correct misspelled xfeaures_to_write local var
It happens. Fix it. No functional changes. Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Link: https://patch.msgid.link/20260404120048.14765-1-bp@kernel.org
This commit is contained in:
parent
5635c8bfd3
commit
f44cc3a48a
|
|
@ -267,16 +267,16 @@ static inline void os_xrstor_supervisor(struct fpstate *fpstate)
|
|||
*/
|
||||
static inline u64 xfeatures_need_sigframe_write(void)
|
||||
{
|
||||
u64 xfeaures_to_write;
|
||||
u64 xfeatures_to_write;
|
||||
|
||||
/* In-use features must be written: */
|
||||
xfeaures_to_write = xfeatures_in_use();
|
||||
xfeatures_to_write = xfeatures_in_use();
|
||||
|
||||
/* Also write all non-optimizable sigframe features: */
|
||||
xfeaures_to_write |= XFEATURE_MASK_USER_SUPPORTED &
|
||||
xfeatures_to_write |= XFEATURE_MASK_USER_SUPPORTED &
|
||||
~XFEATURE_MASK_SIGFRAME_INITOPT;
|
||||
|
||||
return xfeaures_to_write;
|
||||
return xfeatures_to_write;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user