mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 12:47:04 +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>
21 lines
303 B
C
21 lines
303 B
C
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
int
|
|
stfd(void *frS, void *ea)
|
|
{
|
|
#if 0
|
|
#ifdef DEBUG
|
|
printk("%s: S %p, ea %p: ", __func__, frS, ea);
|
|
dump_double(frS);
|
|
printk("\n");
|
|
#endif
|
|
#endif
|
|
|
|
if (copy_to_user(ea, frS, sizeof(double)))
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
}
|