1/*
2 * BK Id: SCCS/s.mffs.c 1.6 05/17/01 18:14:23 cort
3 */
4#include <linux/types.h>
5#include <linux/errno.h>
6#include <asm/uaccess.h>
7
8#include "soft-fp.h"
9
10int
11mffs(u32 *frD)
12{
13	frD[1] = __FPU_FPSCR;
14
15#ifdef DEBUG
16	printk("%s: frD %p: %08x.%08x\n", __FUNCTION__, frD, frD[0], frD[1]);
17#endif
18
19	return 0;
20}
21