Release 4.14 arch/powerpc/math-emu/stfiwx.c
// SPDX-License-Identifier: GPL-2.0
#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;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 56 | 98.25% | 3 | 75.00% |
Harvey Harrison | 1 | 1.75% | 1 | 25.00% |
Total | 57 | 100.00% | 4 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 64 | 95.52% | 3 | 50.00% |
Harvey Harrison | 1 | 1.49% | 1 | 16.67% |
Linus Torvalds | 1 | 1.49% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 1.49% | 1 | 16.67% |
Total | 67 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.