2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/errno.h>
|
2016-12-25 03:46:01 +08:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
frsqrte(void *frD, void *frB)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
2008-03-29 05:21:07 +08:00
|
|
|
printk("%s: %p %p\n", __func__, frD, frB);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|