Revision 492c2e476eac010962850006c49df326919b284c authored by Linus Torvalds on 12 May 2008, 00:09:41 UTC, committed by Linus Torvalds on 12 May 2008, 00:09:41 UTC
1 parent 5701412
Raw File
mffs.c
#include <linux/types.h>
#include <linux/errno.h>
#include <asm/uaccess.h>

#include "soft-fp.h"

int
mffs(u32 *frD)
{
	frD[1] = __FPU_FPSCR;

#ifdef DEBUG
	printk("%s: frD %p: %08x.%08x\n", __func__, frD, frD[0], frD[1]);
#endif

	return 0;
}
back to top