1/*
2 * BK Id: SCCS/s.mtfsb0.c 1.6 05/17/01 18:14:23 cort
3 */
4#include <linux/types.h>
5#include <linux/errno.h>
6#include <asm/uaccess.h>
7
8#include "soft-fp.h"
9
10int
11mtfsb0(int crbD)
12{
13	if ((crbD != 1) && (crbD != 2))
14		__FPU_FPSCR &= ~(1 << (31 - crbD));
15
16#ifdef DEBUG
17	printk("%s: %d %08lx\n", __FUNCTION__, crbD, __FPU_FPSCR);
18#endif
19
20	return 0;
21}
22