Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <linux/types.h>
0003 #include <linux/errno.h>
0004 #include <linux/uaccess.h>
0005 
0006 int
0007 fres(void *frD, void *frB)
0008 {
0009 #ifdef DEBUG
0010     printk("%s: %p %p\n", __func__, frD, frB);
0011 #endif
0012     return -ENOSYS;
0013 }