mffs.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. #include "soft-fp.h"
  8. int
  9. mffs(u32 *frD)
  10. {
  11. frD[1] = __FPU_FPSCR;
  12. #ifdef DEBUG
  13. printk("%s: frD %p: %08x.%08xn", __FUNCTION__, frD, frD[0], frD[1]);
  14. #endif
  15. return 0;
  16. }