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.
20 lines
384 B
20 lines
384 B
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <asm/sfp-machine.h>
|
|
#include <math-emu/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: ", __func__, frD, ea);
|
|
dump_double(frD);
|
|
printk("\n");
|
|
#endif
|
|
return 0;
|
|
}
|
|
|