Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.9
/
15192b1d53506f739b36d37543c42619ac290ebc
/
.
/
arch
/
ppc
/
math-emu
/
fres.c
blob: ec11e46d20afe7facb4178f053a1f77c362b8ed4 [
file
] [
log
] [
blame
]
#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"
,
__FUNCTION__
,
frD
,
frB
);
#endif
return
-
ENOSYS
;
}