GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / powerpc / math-emu / mtfsfi.c
blobfd2acc26813b7f1a240f80427075bc43a52b0c53
1 #include <linux/types.h>
2 #include <linux/errno.h>
3 #include <asm/uaccess.h>
5 #include <asm/sfp-machine.h>
6 #include <math-emu/soft-fp.h>
8 int
9 mtfsfi(unsigned int crfD, unsigned int IMM)
11 u32 mask = 0xf;
13 if (!crfD)
14 mask = 9;
16 __FPU_FPSCR &= ~(mask << ((7 - crfD) << 2));
17 __FPU_FPSCR |= (IMM & 0xf) << ((7 - crfD) << 2);
19 #ifdef DEBUG
20 printk("%s: %d %x: %08lx\n", __func__, crfD, IMM, __FPU_FPSCR);
21 #endif
23 return 0;