Import 2.3.16
[davej-history.git] / arch / ppc / math-emu / mffs.c
bloba23fa43395f381f06561f6410999f6df8b827398
1 /* $Id: mffs.c,v 1.1 1999/08/23 19:00:14 cort Exp $
2 */
4 #include <linux/types.h>
5 #include <linux/errno.h>
6 #include <asm/uaccess.h>
8 #include "soft-fp.h"
10 int
11 mffs(u32 *frD)
13 frD[1] = __FPU_FPSCR;
15 #ifdef DEBUG
16 printk("%s: frD %p: %08x.%08x\n", __FUNCTION__, frD, frD[0], frD[1]);
17 #endif
19 return 0;