PageRenderTime 25ms CodeModel.GetById 14ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/powerpc/math-emu/stfiwx.c

https://bitbucket.org/cresqo/cm7-p500-kernel
C | 16 lines | 13 code | 3 blank | 0 comment | 1 complexity | 2500209fc3e568aa2096e4f0280585b6 MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
 1#include <linux/types.h>
 2#include <linux/errno.h>
 3#include <asm/uaccess.h>
 4
 5int
 6stfiwx(u32 *frS, void *ea)
 7{
 8#ifdef DEBUG
 9	printk("%s: %p %p\n", __func__, frS, ea);
10#endif
11
12	if (copy_to_user(ea, &frS[1], sizeof(frS[1])))
13		return -EFAULT;
14
15	return 0;
16}