![]() |
|
|||
0001 // SPDX-License-Identifier: GPL-2.0 0002 #include <linux/types.h> 0003 #include <linux/errno.h> 0004 #include <linux/uaccess.h> 0005 0006 #include <asm/sfp-machine.h> 0007 #include <math-emu/soft-fp.h> 0008 0009 int 0010 mtfsb0(int crbD) 0011 { 0012 if ((crbD != 1) && (crbD != 2)) 0013 __FPU_FPSCR &= ~(1 << (31 - crbD)); 0014 0015 #ifdef DEBUG 0016 printk("%s: %d %08lx\n", __func__, crbD, __FPU_FPSCR); 0017 #endif 0018 0019 return 0; 0020 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |