Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.9
/
e5851cf64ed2219e776bffda233f1c7f38c98e9b
/
.
/
arch
/
powerpc
/
math-emu
/
fre.c
blob: 49ccf2cc6a5a88dc577a6977b90c24d88d5e1375 [
file
] [
log
] [
blame
]
#include
<linux/types.h>
#include
<linux/errno.h>
#include
<asm/uaccess.h>
int
fre
(
void
*
frD
,
void
*
frB
)
{
#ifdef
DEBUG
printk
(
"%s: %p %p\n"
,
__func__
,
frD
,
frB
);
#endif
return
-
ENOSYS
;
}