repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux 4.11-rc5
[linux/fpc-iii.git]
/
arch
/
powerpc
/
math-emu
/
mffs.c
blob
e00fdc22a0bc294605ba5fc5f63bbad623cdd552
1
#include <linux/types.h>
2
#include <linux/errno.h>
3
#include <linux/uaccess.h>
4
5
#include <asm/sfp-machine.h>
6
#include <math-emu/soft-fp.h>
7
8
int
9
mffs
(
u32
*
frD
)
10
{
11
frD
[
1
] =
__FPU_FPSCR
;
12
13
#ifdef DEBUG
14
printk
(
"%s: frD %p: %08x.%08x
\n
"
,
__func__
,
frD
,
frD
[
0
],
frD
[
1
]);
15
#endif
16
17
return
0
;
18
}