![]() |
|
|||
0001 // SPDX-License-Identifier: GPL-2.0 0002 #include <linux/types.h> 0003 #include <linux/errno.h> 0004 #include <linux/uaccess.h> 0005 0006 #include <asm/sfp-machine.h> 0007 #include <math-emu/double.h> 0008 0009 int 0010 lfd(void *frD, void *ea) 0011 { 0012 if (copy_from_user(frD, ea, sizeof(double))) 0013 return -EFAULT; 0014 #ifdef DEBUG 0015 printk("%s: D %p, ea %p: ", __func__, frD, ea); 0016 dump_double(frD); 0017 printk("\n"); 0018 #endif 0019 return 0; 0020 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |