• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/math-emu/
1#include <linux/types.h>
2#include <linux/errno.h>
3#include <asm/uaccess.h>
4
5#include <asm/sfp-machine.h>
6#include <math-emu/soft-fp.h>
7
8int
9mffs(u32 *frD)
10{
11	frD[1] = __FPU_FPSCR;
12
13#ifdef DEBUG
14	printk("%s: frD %p: %08x.%08x\n", __func__, frD, frD[0], frD[1]);
15#endif
16
17	return 0;
18}
19