mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 12:56:45 +07:00
12 lines
190 B
C
12 lines
190 B
C
|
#include <linux/types.h>
|
||
|
#include <linux/errno.h>
|
||
|
#include <asm/uaccess.h>
|
||
|
|
||
|
int frsqrtes(void *frD, void *frB)
|
||
|
{
|
||
|
#ifdef DEBUG
|
||
|
printk("%s: %p %p\n", __func__, frD, frB);
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|