e48b1b452f
__FUNCTION__ is gcc-specific, use __func__ Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
25 lines
401 B
C
25 lines
401 B
C
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <asm/uaccess.h>
|
|
|
|
#include "soft-fp.h"
|
|
#include "double.h"
|
|
#include "single.h"
|
|
|
|
int
|
|
frsp(void *frD, void *frB)
|
|
{
|
|
FP_DECL_D(B);
|
|
|
|
#ifdef DEBUG
|
|
printk("%s: D %p, B %p\n", __func__, frD, frB);
|
|
#endif
|
|
|
|
__FP_UNPACK_D(B, frB);
|
|
|
|
#ifdef DEBUG
|
|
printk("B: %ld %lu %lu %ld (%ld)\n", B_s, B_f1, B_f0, B_e, B_c);
|
|
#endif
|
|
|
|
return __FP_PACK_DS(frD, B);
|
|
}
|