1
0
This repository has been archived on 2024-07-22. You can view files and clone it. You cannot open issues, pull requests or push a commit.
Files
2024-07-22 01:58:46 -03:00

17 lines
253 B
C
Executable File

#include <linux/types.h>
#include <linux/errno.h>
#include <asm/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;
}