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>
17 lines
255 B
C
17 lines
255 B
C
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
int
|
|
stfiwx(u32 *frS, void *ea)
|
|
{
|
|
#ifdef DEBUG
|
|
printk("%s: %p %p\n", __func__, frS, ea);
|
|
#endif
|
|
|
|
if (copy_to_user(ea, &frS[1], sizeof(frS[1])))
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
}
|