projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'xenarm-for-3.11-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...
[platform/adaptation/renesas_rcar/renesas_kernel.git]
/
arch
/
powerpc
/
math-emu
/
frsqrtes.c
1
#include <linux/types.h>
2
#include <linux/errno.h>
3
#include <asm/uaccess.h>
4
5
int frsqrtes(void *frD, void *frB)
6
{
7
#ifdef DEBUG
8
printk("%s: %p %p\n", __func__, frD, frB);
9
#endif
10
return 0;
11
}