repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
iwlwifi: jiffies based tx queues watchdog
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
arch
/
powerpc
/
math-emu
/
mffs.c
blob
5526cf96ede5e0e33b462f09f44b8c8177c636c9
1
#include <linux/types.h>
2
#include <linux/errno.h>
3
#include <asm/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
}