mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 09:36:52 +07:00
7c0f6ba682
This was entirely automated, using the script by Al: PATT='^[[:blank:]]*#[[:blank:]]*include[[:blank:]]*<asm/uaccess.h>' sed -i -e "s!$PATT!#include <linux/uaccess.h>!" \ $(git grep -l "$PATT"|grep -v ^include/linux/uaccess.h) to do the replacement at the end of the merge window. Requested-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
20 lines
323 B
C
20 lines
323 B
C
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <asm/sfp-machine.h>
|
|
#include <math-emu/soft-fp.h>
|
|
|
|
int
|
|
mtfsb0(int crbD)
|
|
{
|
|
if ((crbD != 1) && (crbD != 2))
|
|
__FPU_FPSCR &= ~(1 << (31 - crbD));
|
|
|
|
#ifdef DEBUG
|
|
printk("%s: %d %08lx\n", __func__, crbD, __FPU_FPSCR);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|