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
ACPI: thinkpad-acpi: preserve radio state across shutdown
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
arch
/
powerpc
/
math-emu
/
fabs.c
blob
549baba5948fbc9d82961cbf044f5768d367745d
1
#include <linux/types.h>
2
#include <linux/errno.h>
3
#include <asm/uaccess.h>
4
5
int
6
fabs
(
u32
*
frD
,
u32
*
frB
)
7
{
8
frD
[
0
] =
frB
[
0
] &
0x7fffffff
;
9
frD
[
1
] =
frB
[
1
];
10
11
#ifdef DEBUG
12
printk
(
"%s: D %p, B %p: "
,
__func__
,
frD
,
frB
);
13
dump_double
(
frD
);
14
printk
(
"
\n
"
);
15
#endif
16
17
return
0
;
18
}