Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: 08e15e81a40e3241ce93b4a43886f3abda184aa6 authored by Linus Torvalds on 07 March 2007, 04:41:20 UTC
Linux 2.6.21-rc3
Tip revision: 08e15e8
mtfsb0.c
#include <linux/types.h>
#include <linux/errno.h>
#include <asm/uaccess.h>

#include "soft-fp.h"

int
mtfsb0(int crbD)
{
	if ((crbD != 1) && (crbD != 2))
		__FPU_FPSCR &= ~(1 << (31 - crbD));

#ifdef DEBUG
	printk("%s: %d %08lx\n", __FUNCTION__, crbD, __FPU_FPSCR);
#endif

	return 0;
}
back to top