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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.stfiwx.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. int
  8. stfiwx(u32 *frS, void *ea)
  9. {
  10. #ifdef DEBUG
  11. printk("%s: %p %pn", __FUNCTION__, frS, ea);
  12. #endif
  13. if (copy_to_user(ea, &frS[1], sizeof(frS[1])))
  14. return -EFAULT;
  15. return 0;
  16. }