Sign in
nest-open-source
/
nest-learning-thermostat
/
5.2
/
linux
/
7c4c5a477d77e0a995fb6dfb1ff1e03a2156d9ea
/
.
/
linux-imx
/
arch
/
powerpc
/
math-emu
/
fres.c
blob: 10ecbd08b79e4f562aa53158e0d53fb1f47f66b5 [
file
]
#include
<linux/types.h>
#include
<linux/errno.h>
#include
<asm/uaccess.h>
int
fres
(
void
*
frD
,
void
*
frB
)
{
#ifdef
DEBUG
printk
(
"%s: %p %p\n"
,
__func__
,
frD
,
frB
);
#endif
return
-
ENOSYS
;
}