Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: 29e8c3c304b62f31b799565c9ee85d42bd163f80 authored by Linus Torvalds on 05 March 2008, 04:33:54 UTC
Linux 2.6.25-rc4
Tip revision: 29e8c3c
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