You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
337 B
19 lines
337 B
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <asm/uaccess.h>
|
|
|
|
#include "sfp-machine.h"
|
|
#include "double.h"
|
|
|
|
int
|
|
lfd(void *frD, void *ea)
|
|
{
|
|
if (copy_from_user(frD, ea, sizeof(double)))
|
|
return -EFAULT;
|
|
#ifdef DEBUG
|
|
printk("%s: D %p, ea %p: ", __FUNCTION__, frD, ea);
|
|
dump_double(frD);
|
|
printk("\n");
|
|
#endif
|
|
return 0;
|
|
}
|
|
|