diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-06-23 15:01:55 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-06-23 19:16:33 +0300 |
commit | 872c65dbf669b3b471b3d8656391a6b4f736d22b (patch) | |
tree | e153d6fc68bf0832d8554f438a407d2d75b8b4fe /arch/x86/math-emu/load_store.c | |
parent | 16dcf4385933a02bb21d0af86a04439d151ad42a (diff) | |
download | linux-872c65dbf669b3b471b3d8656391a6b4f736d22b.tar.xz |
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.c | 2 |
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; |