Skip to content

Commit e7d81c1

Browse files
committed
Merge tag 'x86-build-2025-12-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 math-emu fix from Ingo Molnar: "A single fix for an ancient prototype in the math-emu code, by Arnd Bergmann" * tag 'x86-build-2025-12-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/math-emu: Fix div_Xsig() prototype
2 parents de2f75d + 780813d commit e7d81c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/x86/math-emu/poly.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ asmlinkage void mul_Xsig_Xsig(Xsig *dest, const Xsig *mult);
3939
asmlinkage void shr_Xsig(Xsig *, const int n);
4040
asmlinkage int round_Xsig(Xsig *);
4141
asmlinkage int norm_Xsig(Xsig *);
42-
asmlinkage void div_Xsig(Xsig *x1, const Xsig *x2, const Xsig *dest);
42+
asmlinkage void div_Xsig(Xsig *x1, const Xsig *x2, Xsig *dest);
4343

4444
/* Macro to extract the most significant 32 bits from a long long */
4545
#define LL_MSW(x) (((unsigned long *)&x)[1])

0 commit comments

Comments
 (0)