M7350/kernel/arch/powerpc/math-emu/frsqrte.c

13 lines
189 B
C
Raw Permalink Normal View History

2024-09-09 08:52:07 +00:00
#include <linux/types.h>
#include <linux/errno.h>
#include <asm/uaccess.h>
int
frsqrte(void *frD, void *frB)
{
#ifdef DEBUG
printk("%s: %p %p\n", __func__, frD, frB);
#endif
return 0;
}