summaryrefslogtreecommitdiffstats
path: root/arch/x86/math-emu/load_store.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2021-06-23 14:01:55 +0200
committerBorislav Petkov <bp@suse.de>2021-06-23 18:16:33 +0200
commit872c65dbf669b3b471b3d8656391a6b4f736d22b (patch)
treee153d6fc68bf0832d8554f438a407d2d75b8b4fe /arch/x86/math-emu/load_store.c
parent16dcf4385933a02bb21d0af86a04439d151ad42a (diff)
downloadlinux-stable-872c65dbf669b3b471b3d8656391a6b4f736d22b.tar.gz
linux-stable-872c65dbf669b3b471b3d8656391a6b4f736d22b.tar.bz2
linux-stable-872c65dbf669b3b471b3d8656391a6b4f736d22b.zip
x86/math-emu: Rename frstor()
This is in the way of renaming the low level hardware accessors to match the instruction name. Prepend it with FPU_ which is consistent vs. the rest of the emulation code. No functional change. [ bp: Correct the Reported-by: ] Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Borislav Petkov <bp@suse.de> Link: https://lkml.kernel.org/r/20210623121454.111665161@linutronix.de
Diffstat (limited to 'arch/x86/math-emu/load_store.c')
-rw-r--r--arch/x86/math-emu/load_store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/math-emu/load_store.c b/arch/x86/math-emu/load_store.c
index f15263e158e8..4092df79de4f 100644
--- a/arch/x86/math-emu/load_store.c
+++ b/arch/x86/math-emu/load_store.c
@@ -240,7 +240,7 @@ int FPU_load_store(u_char type, fpu_addr_modes addr_modes,
fix-up operations. */
return 1;
case 022: /* frstor m94/108byte */
- frstor(addr_modes, (u_char __user *) data_address);
+ FPU_frstor(addr_modes, (u_char __user *) data_address);
/* Ensure that the values just loaded are not changed by
fix-up operations. */
return 1;