Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
e484585ec3ee66cd07a627d3a9e2364640a3807f
/
.
/
arch
/
ppc
/
math-emu
/
mffs.c
blob: f477c9170e750d49a75813dbf5f6f40a4eec1679 [
file
] [
log
] [
blame
]
#include
<linux/types.h>
#include
<linux/errno.h>
#include
<asm/uaccess.h>
#include
"soft-fp.h"
int
mffs
(
u32
*
frD
)
{
frD
[
1
]
=
__FPU_FPSCR
;
#ifdef
DEBUG
printk
(
"%s: frD %p: %08x.%08x\n"
,
__FUNCTION__
,
frD
,
frD
[
0
],
frD
[
1
]);
#endif
return
0
;
}