Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.7-rc2 19 lines 320 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/types.h> 3#include <linux/errno.h> 4#include <linux/uaccess.h> 5 6#include <asm/sfp-machine.h> 7#include <math-emu/soft-fp.h> 8 9int 10mffs(u32 *frD) 11{ 12 frD[1] = __FPU_FPSCR; 13 14#ifdef DEBUG 15 printk("%s: frD %p: %08x.%08x\n", __func__, frD, frD[0], frD[1]); 16#endif 17 18 return 0; 19}