mffs.c 248 B

1234567891011121314151617
  1. #include <linux/types.h>
  2. #include <linux/errno.h>
  3. #include <asm/uaccess.h>
  4. #include "soft-fp.h"
  5. int
  6. mffs(u32 *frD)
  7. {
  8. frD[1] = __FPU_FPSCR;
  9. #ifdef DEBUG
  10. printk("%s: frD %p: %08x.%08x\n", __FUNCTION__, frD, frD[0], frD[1]);
  11. #endif
  12. return 0;
  13. }