2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
|
2008-06-04 15:59:29 +08:00
|
|
|
#include <asm/sfp-machine.h>
|
|
|
|
#include <math-emu/soft-fp.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
mffs(u32 *frD)
|
|
|
|
{
|
|
|
|
frD[1] = __FPU_FPSCR;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2008-03-29 05:21:07 +08:00
|
|
|
printk("%s: frD %p: %08x.%08x\n", __func__, frD, frD[0], frD[1]);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|